PATH:
home
/
lab2454c
/
.trash
/
core
/
database
/
migrations
/
new custom
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateShowcasesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('showcases', function (Blueprint $table) { $table->id(); $table->string('name', 200); $table->string('file'); $table->foreignId('user_id')->constrained('users'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('showcases'); } }
[-] 2021_11_29_062020_create_moment_contents_table.php
[edit]
[+]
..
[-] 2021_11_29_115039_create_product_contents_table.php
[edit]
[-] 2021_11_16_110207_create_product_images_table.php
[edit]
[-] 2021_11_29_154045_create_faq_contents_table.php
[edit]
[-] 2021_11_26_072352_collection_product.php
[edit]
[-] 2021_11_26_055956_create_collections_table.php
[edit]
[-] 2021_11_25_061006_create_showcases_table.php
[edit]