1
0
mirror of https://github.com/actix/examples synced 2025-05-13 16:43:52 +02:00
2021-02-26 00:57:58 +00:00

6 lines
122 B
SQL

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