D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
database
/
migrations
/
Filename :
2020_09_21_103001_create_promotions_table.php
back
Copy
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePromotionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('promotions', function (Blueprint $table) { $table->increments('id'); $table->text('body'); $table->integer('saloon_id'); $table->string('type')->nullable(); $table->integer('user_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('promotions'); } }