11 lines
214 B
MySQL
Raw Normal View History

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