1
0
mirror of https://github.com/actix/examples synced 2025-02-02 09:39:03 +01:00
2018-09-02 10:45:06 +01:00

6 lines
122 B
SQL

CREATE TABLE tasks (
id SERIAL PRIMARY KEY,
description VARCHAR NOT NULL,
completed BOOLEAN NOT NULL DEFAULT 'f'
);