Skip to content

Commit

Permalink
Update 2024_10_28_092803_drop_columns_from_settings_table.php
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIII authored Nov 1, 2024
1 parent a0b9ff4 commit 40910b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
public function up(): void
{
Schema::table('settings', function (Blueprint $table) {
$table->dropColumn(['section', 'subsection', 'hint', 'setting']);
$table->dropIndex('ui_settings_settings');
$table->dropColumn(['section', 'subsection', 'hint', 'setting']);
$table->dropPrimary();
$table->primary(['name']);
});
Expand Down

0 comments on commit 40910b8

Please sign in to comment.