PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
newsletter
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateNewsletterTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('newsletters', function (Blueprint $table) { $table->id(); $table->string('email', 120); $table->string('name', 120)->nullable(); $table->string('status', 60)->default('subscribed'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('newsletters'); } }
[-] 2017_10_24_154832_create_newsletter_table.php
[edit]
[+]
..