D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
database
/
migrations
/
Filename :
2024_03_29_104324_add_hide_stickybar_to_vcard_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('vcards', function (Blueprint $table) { $table->boolean('enable_affiliation')->after('language_enable')->default(false); $table->boolean('enable_contact')->after('language_enable')->default(true); $table->boolean('hide_stickybar')->after('language_enable')->default(false); $table->boolean('whatsapp_share')->after('language_enable')->default(false); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('vcards', function (Blueprint $table) { $table->dropColumn('enable_affiliation'); $table->dropColumn('enable_contact'); $table->dropColumn('hide_stickybar'); $table->dropColumn('whatsapp_share'); }); } };