moved go files to src

This commit is contained in:
2025-02-23 19:28:38 -06:00
parent 6445f3a495
commit 2c873779ff
18 changed files with 6 additions and 6 deletions
+22
View File
@@ -0,0 +1,22 @@
-- +goose Up
-- +goose StatementBegin
--PRAGMA journal_mode = WAL;
CREATE TABLE event (
url TEXT NOT NULL UNIQUE,
slug TEXT NOT NULL UNIQUE,
name TEXT NOT NULL,
location TEXT NOT NULL,
organization TEXT NOT NULL,
image TEXT NOT NULL,
date INTEGER NOT NULL,
fights TEXT NOT NULL,
history TEXT NOT NULL
);
CREATE TABLE tapology (
name TEXT NOT NULL UNIQUE,
url TEXT NOT NULL UNIQUE
);
-- +goose StatementEnd