Modrinth/apps/labrinth/migrations/20210718223710_gallery.sql
2024-10-16 14:11:42 -07:00

6 lines
185 B
SQL

-- Add migration script here
CREATE TABLE mods_gallery (
id serial PRIMARY KEY,
mod_id bigint REFERENCES mods ON UPDATE CASCADE NOT NULL,
image_url varchar(2048) NOT NULL
);