Files
Sistema-Educativo-Laravel/database/migrations/2019_05_03_000002_create_subscriptions_table.php
T

35 lines
878 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('subscriptions', function (Blueprint $table) {
$table->id();
$table->morphs('billable');
$table->string('type');
$table->string('paddle_id')->unique();
$table->string('status');
$table->timestamp('trial_ends_at')->nullable();
$table->timestamp('paused_at')->nullable();
$table->timestamp('ends_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('subscriptions');
}
};