mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
6 lines
165 B
SQL
6 lines
165 B
SQL
CREATE TABLE tab_sample (
|
|
alpha bigint(20) DEFAULT NULL,
|
|
beta tinyint(1) DEFAULT NULL,
|
|
gamma varchar(255) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|