Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion singlefile/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ $$;
CREATE TABLE IF NOT EXISTS users (
id integer PRIMARY KEY,
email text NOT NULL CHECK (email LIKE '%@%'),
name text NOT NULL
name text NOT NULL,
city text NOT NULL
);

COMMENT ON TABLE users IS 'User accounts';
Expand Down
Loading