mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
214 B
SQL
10 lines
214 B
SQL
-- SCHEMA VERSION 11: 2020-10-23 --
|
|
-- Create command message table --
|
|
|
|
create table command_messages
|
|
(
|
|
message_id bigint primary key not null,
|
|
author_id bigint not null
|
|
);
|
|
|
|
update info set schema_version = 11;
|