mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-12 19:16:30 +00:00
4 lines
148 B
SQL
4 lines
148 B
SQL
drop schema if exists r cascade;
|
|
create table previously_run_sql (content text primary key);
|
|
insert into previously_run_sql (content) values ('');
|
|
|