From 20e9fe7f6e60e5bfd60b27f82bd61dda64dddf86 Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 13 May 2024 08:08:28 +0000 Subject: [PATCH] Added Mig --- application/migrations/198_qsl_methods_extend.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 application/migrations/198_qsl_methods_extend.php diff --git a/application/migrations/198_qsl_methods_extend.php b/application/migrations/198_qsl_methods_extend.php new file mode 100644 index 000000000..d6318b9e3 --- /dev/null +++ b/application/migrations/198_qsl_methods_extend.php @@ -0,0 +1,14 @@ +db->query("ALTER TABLE users CHANGE COLUMN `user_default_confirmation` `user_default_confirmation` VARCHAR(10) NULL DEFAULT NULL"); // Do 10 Characters for Future Use + } + + public function down(){ + // Down is senseless, since value in field could be longer than 4 + } +}