This commit is contained in:
2025-03-21 19:49:41 +11:00
commit 2ee078c992
60 changed files with 5410 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
-- +goose Up
-- +goose StatementBegin
CREATE TABLE IF NOT EXISTS "Incoming" (
id INTEGER PRIMARY KEY AUTOINCREMENT,
incident_number TEXT,
description TEXT,
short_description TEXT,
urgency TEXT,
impact TEXT,
state TEXT,
external_id TEXT,
work_notes TEXT,
assignment_group TEXT,
assigned_to TEXT,
category TEXT,
subcategory TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS "Incoming";
-- +goose StatementEnd