From 880c87238d3af5dfcf1571d766968460d166ec5b Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 21 Dec 2022 22:29:04 +0100 Subject: [PATCH] [OQRS] Removed default on text column --- application/migrations/112_add_oqrs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/migrations/112_add_oqrs.php b/application/migrations/112_add_oqrs.php index c1d78182..e0691651 100644 --- a/application/migrations/112_add_oqrs.php +++ b/application/migrations/112_add_oqrs.php @@ -16,7 +16,7 @@ class Migration_add_oqrs extends CI_Migration { if (!$this->db->field_exists('oqrs_text', 'station_profile')) { $fields = array( - 'oqrs_text text DEFAULT ""', + 'oqrs_text text', ); $this->dbforge->add_column('station_profile', $fields);