app/database/migrations/2026_01_06_000526_create_subscriptions_table.php

38 lines
1,004 B
PHP
Raw Normal View History

2026-01-05 23:51:50 +01:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
2026-01-05 23:51:50 +01:00
public function up(): void
{
Schema::create('subscriptions', function (Blueprint $table) {
$table->id();
$table->foreignId('planner_id');
$table->string('type');
$table->string('stripe_id')->unique();
$table->string('stripe_status');
$table->string('stripe_price')->nullable();
$table->integer('quantity')->nullable();
2026-01-05 23:51:50 +01:00
$table->timestamp('trial_ends_at')->nullable();
$table->timestamp('ends_at')->nullable();
$table->timestamps();
$table->index(['planner_id', 'stripe_status']);
2026-01-05 23:51:50 +01:00
});
}
/**
* Reverse the migrations.
*/
2026-01-05 23:51:50 +01:00
public function down(): void
{
Schema::dropIfExists('subscriptions');
}
};