lemmy/migrations/2024-04-29-012113_custom_migration_runner/up.sql

6 lines
234 B
MySQL
Raw Normal View History

2024-05-04 14:00:39 +00:00
drop schema if exists r cascade;
-- `content` can't be used as primary key because of size limit
create table previously_run_sql (id boolean primary key, content text);
insert into previously_run_sql (id, content) values (true, '');
2024-05-04 14:00:39 +00:00