/
home
/
obinna
/
html
/
app
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSubscribesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('subscribes', function (Blueprint $table) { $table->id(); $table->timestamps(); $table->string('email'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('subscribes'); } }