diff options
author | Zachary Flower <zach@ninjaninja.net> | 2014-11-03 16:38:41 +0100 |
---|---|---|
committer | Zachary Flower <zach@ninjaninja.net> | 2014-11-03 16:38:41 +0100 |
commit | 12ee7a1a74e45b1369876ea945ae3347da046087 (patch) | |
tree | 2c1589192c88d165e2cc7281f0892ec9e37ca541 /system/database/drivers/mysql | |
parent | e59347dd1665078beb41a1e6ca1b12932b489336 (diff) |
Move comment field after unique field in db forge
Diffstat (limited to 'system/database/drivers/mysql')
-rw-r--r-- | system/database/drivers/mysql/mysql_forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_forge.php b/system/database/drivers/mysql/mysql_forge.php index 7053fa11d..ee89e1d80 100644 --- a/system/database/drivers/mysql/mysql_forge.php +++ b/system/database/drivers/mysql/mysql_forge.php @@ -192,8 +192,8 @@ class CI_DB_mysql_forge extends CI_DB_forge { .$field['null'] .$field['default'] .$field['auto_increment'] - .$field['comment'] .$field['unique'] + .$field['comment'] .$extra_clause; } |