-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.example.tokens.sql
49 lines (47 loc) · 1.04 KB
/
schema.example.tokens.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
CREATE TABLE accounts
(
id TEXT,
trx_id TEXT,
action_index TEXT,
contract TEXT,
symcode TEXT,
account TEXT,
balance TEXT,
balance_delta TEXT,
precision TEXT,
amount TEXT,
value TEXT,
);
CREATE TABLE stats
(
id TEXT,
trx_id TEXT,
action_index TEXT,
contract TEXT,
symcode TEXT,
issuer TEXT,
max_supply TEXT,
supply TEXT,
supply_delta TEXT
precision TEXT,
amount TEXT,
value TEXT,
);
CREATE TABLE transfers
(
id TEXT,
trx_id TEXT,
action_index TEXT,
contract TEXT,
action TEXT,
symcode TEXT,
from TEXT,
to TEXT,
memo TEXT,
quantity TEXT,
precision TEXT,
amount TEXT,
value TEXT,
timestamp TEXT,
block_num TEXT,
);