wip
This commit is contained in:
@@ -13,14 +13,16 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('subscriptions', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('lemon_subscription_id');
|
||||
$table->string('lemon_order_id');
|
||||
$table->string('lemon_product_id');
|
||||
$table->string('lemon_variant_id');
|
||||
$table->string('lemon_variant_name');
|
||||
$table->string('lemon_customer_id');
|
||||
$table->string('lemon_status');
|
||||
$table->string('lemon_trial_ends_at');
|
||||
$table->string('lemon_trial_ends_at')->nullable();
|
||||
$table->string('lemon_renews_at');
|
||||
$table->string('lemon_ends_at');
|
||||
$table->string('lemon_ends_at')->nullable();
|
||||
$table->string('lemon_update_payment_menthod_url');
|
||||
$table->foreignId('team_id');
|
||||
$table->timestamps();
|
||||
@@ -34,4 +36,4 @@ return new class extends Migration
|
||||
{
|
||||
Schema::dropIfExists('subscriptions');
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user