PluralKit/PluralKit.Core/Database/Migrations/11.sql

11 lines
214 B
MySQL
Raw Normal View History

2020-10-23 10:18:28 +00:00
-- SCHEMA VERSION 11: 2020-10-23 --
-- Create command message table --
2020-10-23 10:18:28 +00:00
create table command_messages
(
2020-10-23 10:18:28 +00:00
message_id bigint primary key not null,
author_id bigint not null
);
2020-10-18 06:06:20 +00:00
update info set schema_version = 11;