Skip to content

Commit

Permalink
Create 001_users.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
rockswe authored Jan 5, 2024
1 parent 43ab671 commit 175bc2d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sql/schema/001_users.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- +goose Up

CREATE TABLE users(
id UUID PRIMARY KEY,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL,
name TEXT NOT NULL
);

-- +goose Down
DROP TABLE users;

0 comments on commit 175bc2d

Please sign in to comment.