OwlCyberSecurity - MANAGER
Edit File: 2018_05_17_073606_create_subscriptions_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSubscriptionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('subscriptions', function (Blueprint $table) { $table->increments('id'); $table->string('category'); $table->string('planName'); $table->string('accessTime'); $table->string('nairaPrice')->nullable(); $table->string('keshPrice')->nullable(); $table->string('dollarPrice')->nullable(); $table->string('tshsPrice')->nullable(); $table->string('cediesPrice')->nullable(); $table->text('planBenefits')->nullable(); $table->boolean('status')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('subscriptions'); } }