1
0
mirror of https://github.com/jackc/pgx.git synced 2025-05-06 07:29:58 +00:00
pgx/examples/todo/structure.sql
2014-07-17 09:16:13 -05:00

5 lines
77 B
SQL

create table tasks (
id serial primary key,
description text not null
);