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