mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-27 23:01:21 +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 ('');
|
|
|