Skip to content

Commit

Permalink
feat(newsletter): added users table
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcclung committed Apr 22, 2024
1 parent 8625662 commit fce17cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions migrations/0006_create_users_table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- Add migration script here
CREATE TABLE users(
id uuid NOT NULL,
PRIMARY KEY (id),
username TEXT NOT NULL UNIQUE,
password TEXT NOT NULL
);

0 comments on commit fce17cd

Please sign in to comment.