관리-도구
편집 파일: 2022_08_12_095955_create_home_designs_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateHomeDesignsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('home_designs', function (Blueprint $table) { $table->id(); $table->string('message_icon')->nullable(); $table->longText('about_contact_us'); $table->longText('about_company'); $table->longText('mission_vission'); $table->longText('founders_message'); $table->longText('fb_text'); $table->longText('video_text'); $table->longText('blog_text'); $table->longText('gallery_text'); $table->longText('newsboard_text'); $table->longText('partners_text'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('home_designs'); } }