forked from nnev/kasse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.sql
58 lines (47 loc) · 1.7 KB
/
schema.sql
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
CREATE TABLE users (
-- users contains all user-data. An entry in this table corresponds to one
-- specific person. The account balance is reconstructed completely out of the
-- transactions table, to reduce duplication of information.
-- user_id is a sequential identifier.
user_id INTEGER NOT NULL,
-- name is the username used for display and login.
name TEXT UNIQUE,
-- password is a bcrypt-hashed password.
password BINARY,
-- constraints
PRIMARY KEY (user_id)
);
CREATE TABLE cards (
-- cards contains all card-data. An entry in this table corresponds to one
-- physical card. Every user can have an arbitrary number of cards.
-- card_id is a sequential identifier.
card_id BINARY NOT NULL,
-- user_id is the user this card belongs to.
user_id INTEGER,
-- description is a freetext to use as an identifier.
description TEXT,
-- constraints
PRIMARY KEY (card_id),
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
CREATE TABLE transactions (
-- transactions contains all transactions.
-- transaction_id is a sequential identifier.
transaction_id INTEGER NOT NULL,
-- user_id is the user that made this transaction.
user_id INTEGER,
-- card_id is the card this transaction was made with, if any.
card_id INTEGER,
-- time is the server-time this transaction happened.
time DATETIME,
-- amount is the (potentially negative) amount (in cents) of this
-- transaction.
amount INTEGER,
-- kind describes how this transaction was made: via touching an nfc tag to
-- the reader or by manually adding an amount in the web-interface.
kind TEXT,
-- constraints
PRIMARY KEY (transaction_id),
FOREIGN KEY (user_id) REFERENCES users(user_id),
FOREIGN KEY (card_id) REFERENCES cards(card_id)
);