MariaDB allows defaults of column names
[dbsrgits/SQL-Translator.git] / t / data / mysql / create.sql
index 64ab685..e13eab0 100644 (file)
@@ -4,7 +4,7 @@ create table person (
   age integer,
   weight double(11,2),
   iq tinyint default '0',
-  description text,
+  description text default `name`,
   UNIQUE KEY UC_age_name (age)
 ) ENGINE=MyISAM;