diff options
author | Daniel Vassdal <shutter@canternet.org> | 2015-02-21 12:09:40 +0100 |
---|---|---|
committer | Daniel Vassdal <shutter@canternet.org> | 2015-02-21 12:49:31 +0100 |
commit | 5de4171a81407686bd7bb30789b33b7f69903df4 (patch) | |
tree | 94e45b3e22eeac9b0ef29777c27803c2d63c8138 | |
parent | 2d97be1d32cb518b104583239c9483410b268fac (diff) |
m_sqloper.mysql.sql: TYPE is deprecated as of MySQL 5.5
"The older TYPE option that was synonymous with ENGINE was removed in MySQL 5.5."
https://dev.mysql.com/doc/refman/5.6/en/create-table.html
-rw-r--r-- | extras/m_sqloper.mysql.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/m_sqloper.mysql.sql b/extras/m_sqloper.mysql.sql index 293a2aa70..9464adc1d 100644 --- a/extras/m_sqloper.mysql.sql +++ b/extras/m_sqloper.mysql.sql @@ -15,7 +15,7 @@ CREATE TABLE ircd_opers ( hostname text, type text, PRIMARY KEY (id) -) TYPE=MyISAM; +) ENGINE=MyISAM; -- -- Dumping data for table `ircd_opers` |