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

5 lines
90 B
MySQL
Raw Permalink Normal View History

2022-11-06 02:39:13 +03:00
-- Your SQL goes here
CREATE TABLE chats (
id BIGINT PRIMARY KEY,
name TEXT NOT NULL
)