home / ynab

admin_transaction_overrides

✎ View and edit SQL

This data as json

0 records

CREATE TABLE admin_transaction_overrides (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    transaction_id TEXT NOT NULL,
    override_category TEXT,
    override_payee TEXT, 
    override_amount INTEGER,
    notes TEXT,
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
Powered by Datasette · Queries took 13.656ms