backend/migrations/2023-08-23-142552_channels/up.sql

9 lines
179 B
MySQL
Raw Normal View History

2023-08-27 17:16:10 +02:00
-- Your SQL goes here
CREATE TABLE channels (
id BIGINT NOT NULL AUTO_INCREMENT,
user BIGINT NOT NULL,
name VARCHAR(255) NOT NULL,
Bio text,
PRIMARY KEY(id)
)