PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBidsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('bids', function (Blueprint $table) { $table->id(); $table->double('price',10,5)->default(0); $table->foreignId('fashion_nft_id')->constrained('fashion_nfts'); $table->foreignId('user_id')->constrained('users'); $table->tinyInteger('status')->default(0)->comment('Pending : 0, Won : 1'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bids'); } }
[+]
new custom
[-] 2017_08_11_074006_create_menu_items_wp_table.php
[edit]
[-] 2022_01_04_065503_create_bids_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]
[-] 2022_01_05_145650_create_nft_orders_table.php
[edit]