database/migrations/2020_01_01_000002_create_plan_features_table.php
<?php
declare(strict_types=1);
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePlanFeaturesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
Schema::create(config('rinvex.subscriptions.tables.plan_features'), function (Blueprint $table) {
// Columns
$table->increments('id');
$table->integer('plan_id')->unsigned();
$table->string('slug');
$table->json('name');
$table->json('description')->nullable();
$table->string('value');
$table->smallInteger('resettable_period')->unsigned()->default(0);
$table->string('resettable_interval')->default('month');
$table->mediumInteger('sort_order')->unsigned()->default(0);
$table->timestamps();
$table->softDeletes();
// Indexes
$table->unique(['plan_id', 'slug']);
$table->foreign('plan_id')->references('id')->on(config('rinvex.subscriptions.tables.plans'))
->onDelete('cascade')->onUpdate('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::dropIfExists(config('rinvex.subscriptions.tables.plan_features'));
}
}