PATH:
home
/
lab2454c
/
.trash
/
core
/
database
/
migrations
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateMenusWpTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create( config('menu.table_prefix') . config('menu.table_name_menus'), function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists( config('menu.table_prefix') . config('menu.table_name_menus')); } }
[+]
new custom
[-] 2017_08_11_074006_create_menu_items_wp_table.php
[edit]
[+]
..
[-] 2021_12_31_124822_create_fashion_nfts_table.php
[edit]
[-] 2021_12_31_162354_create_fashion_nft_images_table.php
[edit]
[+]
old(with theme)
[-] 2017_08_11_073824_create_menus_wp_table.php
[edit]