Files
mostlymatter/server/channels/db/migrations/mysql/000019_create_licenses.up.sql

7 строки
183 B
SQL

CREATE TABLE IF NOT EXISTS Licenses (
Id varchar(26) NOT NULL,
CreateAt bigint(20) DEFAULT NULL,
Bytes text,
PRIMARY KEY (Id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;