rust_forum/migrations/20241213232937_contact.up.sql

5 lines
162 B
MySQL
Raw Normal View History

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "contact"(
user_id BIGSERIAL PRIMARY KEY NOT NULL UNIQUE,
email VARCHAR(255) NOT NULL UNIQUE
);