* Cherry-pick migrations from server projects into main * Fix up project types and seed data * fix tag test
9 lines
297 B
SQL
9 lines
297 B
SQL
ALTER TABLE versions
|
|
ADD COLUMN components JSONB NOT NULL DEFAULT '{}';
|
|
|
|
-- extra metadata for the `minecraft_java_server` version component
|
|
CREATE TABLE minecraft_java_server_versions (
|
|
id bigint PRIMARY KEY REFERENCES versions(id),
|
|
modpack_id bigint REFERENCES versions(id)
|
|
);
|