diff --git a/application/migrations/159_extend_default_qsl.php b/application/migrations/159_extend_default_qsl.php index 768b48f4..03e93f98 100644 --- a/application/migrations/159_extend_default_qsl.php +++ b/application/migrations/159_extend_default_qsl.php @@ -1,11 +1,16 @@ db->query("ALTER TABLE `users` CHANGE COLUMN `user_default_confirmation` `user_default_confirmation` VARCHAR(4) NULL DEFAULT NULL"); } -} -?> + public function down() + { + //the down function can be empty here, but we need one. + } +}