Skip to content

Commit

Permalink
fix: event migration changed to string for short desc
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Aug 2, 2024
1 parent a7b23f4 commit c19a0a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up(): void
$table->increments('id');
$table->unsignedInteger('calendar_id');
$table->string('title');
$table->text('short_description')->nullable();
$table->string('short_description', 280)->nullable();
$table->text('long_description')->nullable();
$table->timestamp('start_date');
$table->timestamp('end_date')->nullable();
Expand Down

0 comments on commit c19a0a0

Please sign in to comment.