mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-27 23:01:21 +00:00
5 lines
234 B
SQL
5 lines
234 B
SQL
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, '');
|
|
|