SQLite format 3@  .�)
[;�,[�N%%�_tableTransactionsTransactionsCREATE TABLE Transactions (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                account_id INTEGER NOT NULL,
                type_id INTEGER NOT NULL,
                amount FLOAT NOT NULL,
                date DATE NOT NULL,
                description TEXT,
                FOREIGN KEY(account_id) REFERENCES Accounts(id),
                FOREIGN KEY(type_id) REFERENCES TransactionTypes(id)
            )�:--�'tableTransactionTypesTransactionTypesCREATE TABLE TransactionTypes (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                description TEXT NOT NULL
            )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�B�WtableAccountsAccountsCREATE TABLE Accounts (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                name TEXT NOT NULL,
                type INTEGER NOT NULL
            )