c076df41c6
git-subtree-dir: lsqlthw-remnants git-subtree-mainline:01e5a4e45f
git-subtree-split:45ac55d14c
7 lines
110 B
SQL
7 lines
110 B
SQL
CREATE TABLE person (
|
|
id INTEGER PRIMARY KEY,
|
|
first_name TEXT,
|
|
last_name TEXT,
|
|
age INTEGER
|
|
);
|