chirpy_server/sql/schema/001_users.sql

10 lines
196 B
MySQL
Raw Normal View History

2024-10-23 22:16:51 +02:00
-- +goose Up
CREATE TABLE users (
id UUID PRIMARY KEY,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL,
email TEXT NOT NULL UNIQUE
);
-- +goose Down
DROP TABLE users;