summaryrefslogtreecommitdiff
path: root/fracture/db.py
blob: 2611ee973e6d6e7801aa6f8c54ced5f64a734aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import sqlite3

def create(dbname):
    conn = sqlite3.connect(dbname)
    c = conn.cursor()

    c.execute('''CREATE TABLE products
                 ( id          INTEGER PRIMARY KEY,
                   invoice_id  INTEGER,
                   description TEXT NOT NULL,
                   units       REAL NOT NULL,
                   price_unit  REAL NOT NULL,
                   vat         REAL,
                   FOREIGN KEY(invoice_id) REFERENCES invoices(id)
                   ON DELETE CASCADE )''')

    # date is %Y-%m-%d
    c.execute('''CREATE TABLE invoices
                 ( id       INTEGER PRIMARY KEY,
                   type     TEXT NOT NULL,
                   series   INTEGER NOT NULL,
                   date     TEXT NOT NULL,
                   notes    TEXT,

                   customer_id      TEXT,
                   customer_name    TEXT,
                   customer_address TEXT
                 )''')

    c.execute('''CREATE TABLE taxes
                 ( name         TEXT NOT NULL,
                   invoice_id   INTEGER,
                   ratio        REAL,
                   PRIMARY KEY(name, invoice_id)
                   FOREIGN KEY(invoice_id) REFERENCES invoices(id)
                   ON DELETE CASCADE )''')

    conn.commit()
    conn.close()