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