Files
AstralRinth/migrations/2020-05-15-055207_create_versions/up.sql
2020-05-14 22:53:22 -07:00

12 lines
350 B
SQL

CREATE TABLE versions (
id SERIAL PRIMARY KEY,
mod_id SERIAL NOT NULL,
title VARCHAR NOT NULL,
changelog_path VARCHAR NOT NULL,
files_path TEXT[] NOT NULL,
date_published DATE NOT NULL,
author VARCHAR NOT NULL,
downloads INTEGER NOT NULL DEFAULT 0,
dependencies TEXT[] NOT NULL,
game_versions TEXT[] NOT NULL
)