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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
<?php
// create db
// db must be defined before this file is included.
$db->queries("
CREATE TABLE IF NOT EXISTS model (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
module_id INT
);
CREATE TABLE IF NOT EXISTS part (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
name VARCHAR(128),
description VARCHAR(256),
url VARCHAR(256),
units INT,
photo MEDIUMBLOB,
stl MEDIUMBLOB,
notes VARCHAR(2048)
);
CREATE TABLE IF NOT EXISTS source (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
name VARCHAR(128),
description VARCHAR(256),
url VARCHAR(256),
part_url_prefix VARCHAR(256), /* this plus a part number should be the url for the page about that part */
region VARCHAR(64),
abbreviation VARCHAR(6) UNIQUE,
notes VARCHAR(2048)
);
CREATE TABLE IF NOT EXISTS module ( /* also used for assemblies */
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
name VARCHAR(128) UNIQUE,
description VARCHAR(256),
url VARCHAR(256),
notes VARCHAR(2048)
);
CREATE TABLE IF NOT EXISTS tag ( /*just like flickr tags */
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
name VARCHAR(32),
description VARCHAR(256)
);
CREATE TABLE IF NOT EXISTS region (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
name VARCHAR(64),
description VARCHAR(256)
);
CREATE TABLE IF NOT EXISTS region_source (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
region_id INT,
source_id INT
);
CREATE TABLE IF NOT EXISTS model_tag ( /*just like flickr tags */
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
model_id INT,
tag_id INT
);
CREATE TABLE IF NOT EXISTS module_tag ( /*just like flickr tags */
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
module_id INT,
tag_id INT
);
CREATE TABLE IF NOT EXISTS part_tag ( /*just like flickr tags */
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
part_id INT,
tag_id INT
);
CREATE TABLE IF NOT EXISTS source_part (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
source_id INT,
part_id INT,
vendor_part_id VARCHAR(64), /* Vendor's part number */
vendor_part_name VARCHAR(256), /* Vendor's name for part, if different from ours */
url VARCHAR(256),
lot_size INT,
price FLOAT(2),
price_date DATE,
notes VARCHAR(2048) /* notes about getting this particular part from this vendor */
);
CREATE TABLE IF NOT EXISTS module_part (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
module_id INT,
part_id INT,
quantity INT,
schematic VARCHAR(16), /* this is the code used to identify this part on a drawing */
description VARCHAR(256), /* If part has a colloquial name when used in this context, put it here */
notes VARCHAR(2048) /* notes about how this part is used in this module*/
);
CREATE TABLE IF NOT EXISTS module_module (
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT UNIQUE,
supermodule_id INT,
submodule_id INT,
quantity INT, /*how many submodules in the supermodule? */
schematic VARCHAR(16), /* this is the code used to identify the submodule on a drawing */
notes VARCHAR(2048) /* notes about how this assembly or submodule fits with the supermodule */
);
INSERT INTO tag (name, description) VALUES ('', 'N/A');
INSERT INTO source (name, abbreviation, description) VALUES ('No Source', 'NS', 'Some parts you\'ll just have to find on your own.');
/* Put those regions in */
INSERT INTO region (name) VALUES ('Worldwide');
INSERT INTO region (name) VALUES ('Americas (North)');
INSERT INTO region (name) VALUES ('Americas (South)');
INSERT INTO region (name) VALUES ('Asia');
INSERT INTO region (name) VALUES ('Europe');
INSERT INTO region (name) VALUES ('Oceania');
");
?>
|