mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
16 lines
277 B
SQL
16 lines
277 B
SQL
/*
|
|
% sqlite3 examples.db < create.sql
|
|
*/
|
|
|
|
/* begin table creation */
|
|
|
|
create table person
|
|
(id integer primary key autoincrement not null,
|
|
name varchar(20) not null
|
|
);
|
|
|
|
create table product
|
|
(id integer primary key autoincrement not null,
|
|
name varchar(20) not null
|
|
);
|