<?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->id();
$table->uuid('uid');
$table->unsignedBigInteger('user_id');
$table->unsignedBigInteger('plan_id');
$table->unsignedBigInteger('payment_method_id')->nullable();
$table->text('options')->nullable();
$table->enum('status', ['new', 'pending', 'active', 'ended', 'renew'])->default('new');
$table->boolean('paid')->default(false);
$table->boolean('payment_claimed')->default(false);
$table->timestamp('current_period_ends_at')->nullable();
$table->dateTime('start_at')->nullable();
$table->dateTime('end_at')->nullable();
$table->unsignedBigInteger('end_by')->nullable();
$table->integer('end_period_last_days')->default(10);
$table->timestamps();
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->foreign('end_by')->references('id')->on('users')->onDelete('cascade');
$table->foreign('plan_id')->references('id')->on('plans')->onDelete('cascade');
$table->foreign('payment_method_id')->references('id')->on('payment_methods')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('subscriptions');
}
}