freechat/json-api/migrations/2020-12-29-030934_jwt/up.sql

5 lines
129 B
SQL

CREATE TABLE IF NOT EXISTS `jwt`(
`id` BIGINT UNSIGNED NOT NULL,
`token` VARCHAR(256) NOT NULL,
PRIMARY KEY (`id`)
);