mirror of https://github.com/LemmyNet/lemmy.git
5 lines
148 B
MySQL
5 lines
148 B
MySQL
|
drop schema if exists r cascade;
|
||
|
create table previously_run_sql (content text primary key);
|
||
|
insert into previously_run_sql (content) values ('');
|
||
|
|