6 lines
103 B
SQL
6 lines
103 B
SQL
create table word_group
|
|
(
|
|
id INTEGER
|
|
primary key autoincrement,
|
|
name TEXT not null
|
|
); |