godette-rust/migrations/2022-11-04-171408_create_chats/up.sql

5 lines
90 B
SQL

-- Your SQL goes here
CREATE TABLE chats (
id BIGINT PRIMARY KEY,
name TEXT NOT NULL
)