1 |
|
2 |
# |
3 |
# This is the full definition of our (initially empty) |
4 |
# SQL database for i-scream logging. This includes |
5 |
# test tables which (unsuprisingly) are for testing! |
6 |
# |
7 |
|
8 |
# |
9 |
# This reflects our revised design for the structure |
10 |
# of the database. |
11 |
# |
12 |
|
13 |
# Host: localhost Database : co600_10_db |
14 |
|
15 |
# -------------------------------------------------------- |
16 |
# |
17 |
# Table structure for table 'packet' |
18 |
# |
19 |
|
20 |
CREATE TABLE packet ( |
21 |
id bigint(20) DEFAULT '0' NOT NULL auto_increment, |
22 |
ip varchar(15) NOT NULL, |
23 |
machine_name varchar(31) NOT NULL, |
24 |
seq_no bigint(20) DEFAULT '0' NOT NULL, |
25 |
sent_date bigint(20) DEFAULT '0' NOT NULL, |
26 |
receipt_date bigint(20) DEFAULT '0' NOT NULL, |
27 |
PRIMARY KEY (id), |
28 |
KEY id (id), |
29 |
UNIQUE id_2 (id) |
30 |
); |
31 |
|
32 |
|
33 |
# -------------------------------------------------------- |
34 |
# |
35 |
# Table structure for table 'packet_test' |
36 |
# |
37 |
|
38 |
CREATE TABLE packet_test ( |
39 |
id bigint(20) DEFAULT '0' NOT NULL auto_increment, |
40 |
ip varchar(15) NOT NULL, |
41 |
machine_name varchar(31) NOT NULL, |
42 |
seq_no bigint(20) DEFAULT '0' NOT NULL, |
43 |
sent_date bigint(20) DEFAULT '0' NOT NULL, |
44 |
receipt_date bigint(20) DEFAULT '0' NOT NULL, |
45 |
PRIMARY KEY (id), |
46 |
KEY id (id), |
47 |
UNIQUE id_2 (id) |
48 |
); |
49 |
|
50 |
|
51 |
# -------------------------------------------------------- |
52 |
# |
53 |
# Table structure for table 'parameter' |
54 |
# |
55 |
|
56 |
CREATE TABLE parameter ( |
57 |
id bigint(20) DEFAULT '0' NOT NULL auto_increment, |
58 |
packet_id bigint(20) DEFAULT '0' NOT NULL, |
59 |
name varchar(63) NOT NULL, |
60 |
value varchar(63) NOT NULL, |
61 |
PRIMARY KEY (id), |
62 |
KEY id (id), |
63 |
UNIQUE id_2 (id) |
64 |
); |
65 |
|
66 |
|
67 |
# -------------------------------------------------------- |
68 |
# |
69 |
# Table structure for table 'parameter_test' |
70 |
# |
71 |
|
72 |
CREATE TABLE parameter_test ( |
73 |
id bigint(20) DEFAULT '0' NOT NULL auto_increment, |
74 |
packet_id bigint(20) DEFAULT '0' NOT NULL, |
75 |
name varchar(63) NOT NULL, |
76 |
value varchar(63) NOT NULL, |
77 |
PRIMARY KEY (id), |
78 |
KEY id (id), |
79 |
UNIQUE id_2 (id) |
80 |
); |
81 |
|
82 |
# end! |