rust_forum/migrations/20241213232937_contact.up.sql
2024-12-15 03:58:47 +03:00

5 lines
No EOL
156 B
SQL

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