diff --git a/database/migrations/2021_08_23_062246_update_stories_table_fix_expires_at_column.php b/database/migrations/2021_08_23_062246_update_stories_table_fix_expires_at_column.php new file mode 100644 index 000000000..be33dc3a3 --- /dev/null +++ b/database/migrations/2021_08_23_062246_update_stories_table_fix_expires_at_column.php @@ -0,0 +1,48 @@ +getDoctrineSchemaManager(); + $doctrineTable = $sm->listTableDetails('stories'); + + if($doctrineTable->hasIndex('stories_expires_at_index')) { + $table->dropIndex('stories_expires_at_index'); + } + $table->timestamp('expires_at')->default(null)->index()->nullable()->change(); + $table->boolean('can_reply')->default(true); + $table->boolean('can_react')->default(true); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('stories', function (Blueprint $table) { + $sm = Schema::getConnection()->getDoctrineSchemaManager(); + $doctrineTable = $sm->listTableDetails('stories'); + + if($doctrineTable->hasIndex('stories_expires_at_index')) { + $table->dropIndex('stories_expires_at_index'); + } + $table->timestamp('expires_at')->default(null)->index()->nullable()->change(); + $table->dropColumn('can_reply'); + $table->dropColumn('can_react'); + }); + } +}