PluralKit/crates/migrate/data/migrations/11.sql
alyssa 47c5990218 chore: move migrations to rust
also adds some basic test seed data
2025-07-24 01:36:04 +00:00

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;