database-schema
Installation
SKILL.md
Database Schema
STATUS: NOT IMPLEMENTED IN MVP This skill documents the planned schema for post-MVP persistence. MVP currently has no database - all state is in-memory.
Location: ~/.multishot/database.sqlite
Tables
CREATE TABLE runs (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
created_at INTEGER NOT NULL,
status TEXT NOT NULL, -- 'active' | 'completed'
current_round_id TEXT,
FOREIGN KEY (current_round_id) REFERENCES rounds(id)
);