You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2020-12-17-030456_create_al.../up.sql

8 lines
276 B
SQL

-- Some view that act as aliases
-- unfortunately necessary, since diesel doesn't have self joins
-- or alias support yet
create view user_alias_1 as select * from user_;
create view user_alias_2 as select * from user_;
create view comment_alias_1 as select * from comment;