1
0
mirror of https://github.com/actix/examples synced 2025-03-21 02:55:17 +01:00
2021-02-26 00:57:58 +00:00

6 lines
152 B
SQL

CREATE TABLE IF NOT EXISTS todos (
id SERIAL PRIMARY KEY,
description TEXT NOT NULL,
done BOOLEAN NOT NULL DEFAULT FALSE
);