System Logic Companion Application & Relational DB Previewer
This interface demonstrates the exact transactional table layout initialized by the Python backend application layer:
CREATE TABLE flashcards (
id INTEGER PRIMARY KEY AUTOINCREMENT,
deck_name TEXT NOT NULL,
front_prompt TEXT NOT NULL,
back_answer TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
review_count INTEGER DEFAULT 0,
ease_factor FLOAT DEFAULT 2.5
);