mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
8dab533b40
* Simple Todo application using Actix-web with SQLx and PostgreSQL * fix issue with not matching project name * remove comment * - downgrade on actix-web 2.0.0 - fixed typo - renamed .env-example to .env.example - removed comments
6 lines
152 B
SQL
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
|
|
);
|