This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shopping-lists/flyway/sql/V1___initial_schema.sql
AndrewTrieu 08128374c1 First commit
2022-12-27 19:38:34 +02:00

12 lines
287 B
SQL

CREATE TABLE shopping_lists (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
active BOOLEAN DEFAULT TRUE
);
CREATE TABLE shopping_list_items (
id SERIAL PRIMARY KEY,
shopping_list_id INTEGER REFERENCES shopping_lists(id),
name TEXT NOT NULL,
collected BOOLEAN DEFAULT FALSE
);