1
0
mirror of https://github.com/actix/examples synced 2025-01-23 06:14:35 +01:00
2019-12-07 23:59:24 +06:00

6 lines
122 B
SQL

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