zedshaw.games/migrations/20250802154952_create_game_table.sql

18 lines
290 B
SQL

-- +goose Up
-- +goose StatementBegin
CREATE TABLE game (
id INTEGER PRIMARY KEY,
slug TEXT,
title TEXT,
description TEXT,
image TEXT,
url TEXT,
tags TEXT,
video TEXT
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP TABLE game;
-- +goose StatementEnd