7 lines
155 B
SQL
7 lines
155 B
SQL
-- Your SQL goes here
|
|
create table words (
|
|
id integer not null primary key autoincrement,
|
|
word varchar not null,
|
|
info text not null
|
|
)
|