Skip to content

Commit

Permalink
fixed column length
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Kummer committed Aug 18, 2023
1 parent a6ab8bf commit 5f71001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_subscriptions_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class CreateSubscriptionsTable extends Migration
$table->id();
$table->morphs('subscribable');
$table->foreignId('plan_id')->nullable()->constrained();
$table->string('uuid', 32);
$table->string('uuid', 36);
$table->string('period', 32)->nullable()->default(null);
$table->timestamp('trial_ends_at')->nullable()->default(null);
$table->timestamp('ends_at')->nullable()->default(null);
Expand Down

0 comments on commit 5f71001

Please sign in to comment.