platform/angel_migration_runner/example/todo.sql
2019-02-14 12:15:34 -05:00

14 lines
301 B
SQL
Executable file

-- Generated by running `todo.dart`
CREATE TABLE "users" (
"id" serial,
"username" varchar(32) UNIQUE,
"password" varchar,
"account_confirmed" serial
);
CREATE TABLE "todos" (
"id" serial,
"user_id" int REFERENCES "user"("id") ON DELETE CASCADE,
"text" varchar,
"completed" serial
);