From 02b29b3426b1e5547ba4e8ba75b3eca7963a365e Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Thu, 31 Aug 2023 08:41:59 +0200 Subject: [PATCH] And migration script --- .../migrations/141_alter_user_options_table.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 application/migrations/141_alter_user_options_table.php diff --git a/application/migrations/141_alter_user_options_table.php b/application/migrations/141_alter_user_options_table.php new file mode 100644 index 00000000..f62cbba6 --- /dev/null +++ b/application/migrations/141_alter_user_options_table.php @@ -0,0 +1,13 @@ +db->query("ALTER TABLE user_options CHANGE COLUMN option_value option_value text DEFAULT NULL;"); + } + + public function down(){ + } +}