D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
database
/
migrations
/
Filename :
2017_12_27_083021_create_artistschanges_table.php
back
Copy
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateArtistschangesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('artistschanges', function (Blueprint $table) { $table->increments('id'); $table->integer('manager_id'); $table->integer('order_id'); $table->integer('artist_old_id'); $table->integer('artist_new_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('artistschanges'); } }