%PDF- %PDF-
Direktori : /var/www/html/sljcon/database/migrations/ |
Current File : /var/www/html/sljcon/database/migrations/2018_06_03_134257_create_before_after_table.php |
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateBeforeAfterTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('before_after', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->string('before_url'); $table->string('after_url'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('before_after'); } }