-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.db
More file actions
43 lines (43 loc) · 28 KB
/
app.db
File metadata and controls
43 lines (43 loc) · 28 KB
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
SQLite format 3 @ .v�
� p �S
t�p ��tableticketticketCREATE TABLE ticket (
id INTEGER NOT NULL,
user_id INTEGER NOT NULL,
petshot_id INTEGER NOT NULL,
status VARCHAR(1) NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY(user_id) REFERENCES user (id),
FOREIGN KEY(petshot_id) REFERENCES pet_shot (id)
)�k''�tablefound_pi_shotfound_pi_shotCREATE TABLE found_pi_shot (
id INTEGER NOT NULL,
user_id INTEGER NOT NULL,
name VARCHAR(100) NOT NULL,
image VARCHAR(255),
PRIMARY KEY (id),
FOREIGN KEY(user_id) REFERENCES user (id)
)�\�tablepet_shotpet_shotCREATE TABLE pet_shot (
id INTEGER NOT NULL,
user_id INTEGER NOT NULL,
name VARCHAR(100) NOT NULL,
image VARCHAR(255),
PRIMARY KEY (id),
FOREIGN KEY(user_id) REFERENCES user (id)
)�F�_tablelost_petlost_petCREATE TABLE lost_pet (
id INTEGER NOT NULL,
user_id INTEGER NOT NULL,
name VARCHAR(100) NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY(user_id) REFERENCES user (id)
)�0�CtableuseruserCREATE TABLE user (
id INTEGER NOT NULL,
username VARCHAR(80) NOT NULL,
password_hash VARCHAR(128) NOT NULL,
PRIMARY KEY (id),
UNIQUE (username)
)'; indexsqlite_autoindex_user_1user
Q Q �, �QTruckscrypt:32768:8:1$euXNUFdNEAoFqB1L$98955d0319423cd548aeea6fa35dc9a7fda01ef1b55d2146a97829aa216832a47d284abd0040465eecee68c496697a0b3b4108bfe58320b1263b60378ba3c4a5
� � Truck