1
0
mirror of https://github.com/actix/examples synced 2025-06-27 01:27:43 +02:00

use sqlite in basics/todo

This commit is contained in:
Rob Ede
2022-02-06 07:55:51 +00:00
parent a72663ed26
commit 120d33057a
13 changed files with 130 additions and 64 deletions

View File

@ -1,5 +1,5 @@
CREATE TABLE tasks (
id SERIAL PRIMARY KEY,
id INTEGER PRIMARY KEY,
description VARCHAR NOT NULL,
completed BOOLEAN NOT NULL DEFAULT 'f'
);