mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-14 06:28:40 +00:00
5 lines
148 B
SQL
5 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 ('');
|
|
|