From 749002b76862e80ee8f2b32551c78ad8511569bc Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 21 Aug 2023 20:09:48 +0100 Subject: [PATCH] Added migration to add name order to settings Signed-off-by: snipe --- ...1_064609_add_name_ordering_to_settings.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2023_08_21_064609_add_name_ordering_to_settings.php diff --git a/database/migrations/2023_08_21_064609_add_name_ordering_to_settings.php b/database/migrations/2023_08_21_064609_add_name_ordering_to_settings.php new file mode 100644 index 0000000000..7a0afc5456 --- /dev/null +++ b/database/migrations/2023_08_21_064609_add_name_ordering_to_settings.php @@ -0,0 +1,32 @@ +string('name_display_format', 10)->after('alert_threshold')->nullable()->default('first_last'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('settings', function (Blueprint $table) { + $table->dropColumn('name_display_format'); + }); + } +}