Subversion Repositories computer_asset_manager_v2

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 rodolico 1
/*
46 rodolico 2
Remove everything wit
3
drop table if exists _config;
4
drop table if exists _menu;
5
drop table if exists _permissions;
6
drop table if exists _permissions_categories;
7
drop table if exists _system;
8
drop table if exists _users_permissions;
9
drop view if exists _view_users_permissions;
10
drop table if exists client;
11
drop table if exists client_device;
12
drop table if exists client_site;
13
drop table if exists device;
14
drop table if exists device_device;
15
drop table if exists device_device_type;
16
drop table if exists device_type;
17
drop table if exists site;
18
drop table if exists site_device;
19
drop table if exists temp;
20
drop view if exists view_device_types;
21
drop view if exists view_device_site_client_type;
22
 
23
*/
24
 
25
/*
33 rodolico 26
   The base install of CAMP2.
27
 
28
   Just track devices. A device can be any arbitrary item.
46 rodolico 29
   A device has one owner, and is located at one location (location)
30
   A location also has an owner. Devices can be located on locations
31
   owned by a different owner, ie when a device is lent to a owner
33 rodolico 32
   or colocated at a third party NOC.
33
 
34
   This is very basic. It only tracks device ownership and locations,
35
   and movement between them (via the created and removed fields).
36
   When a device is moved to a different location, or sold to a different
46 rodolico 37
   owner, the old record in the linking field has its removed field 
33 rodolico 38
   updated and a new record created with a created date. With this, we
39
   can track the lifespan of a device.
40
 
41
   It is assumed various modules will be created to extend the capabilities
42
   of this basic structure. However, modules should not modify the basic
43
   database structure, instead creating new tables that link into
44
   these tables.
45
*/
46
 
47
/*
48
   configuration of application. DB representation of old Windows INI file format
49
   containing groups, and under groups key/value pairs
50
*/
51
drop table if exists _system;
52
create table _system (
53
  _system_id      int unsigned not null auto_increment,
54
  group_name      varchar(45) not null comment 'Group name for matching',
55
  key_name        varchar(45) not null comment 'key name for matching',
56
  key_value       varchar(45) not null comment 'value for key_name',
40 rodolico 57
  unique key      unique_group_name( group_name,key_name ),
33 rodolico 58
  primary key     (_system_id)
59
)
60
comment = 'Stores internal system information like ini file';
61
 
62
/*
63
   holds menu, which may be modified programmatically.
64
   This is a hierarchial menu so an entry may have a parent entry
65
*/
66
drop table if exists _menu;
67
create table _menu (
68
   _menu_id       int unsigned not null auto_increment,
37 rodolico 69
   parent_id      int unsigned default null references _menu (_menu_id),
33 rodolico 70
   caption        varchar(20) not null comment 'Caption displayed for menu',
71
   url            varchar(64) default null comment 'optional URL when they click here',
46 rodolico 72
   shortname      varchar(16) default null comment 'used for permissions to determine if we display',
33 rodolico 73
   primary key    (_menu_id)
74
) comment = 'Menus for the application';
75
 
46 rodolico 76
/*
77
   insert the menu options for the main program
78
*/
79
insert into camp2._menu values (null,null,'Home', '/index.php', 'menu_home' );
80
insert into camp2._menu select null,_menu_id,'Owners', '/index.php?action=owner', 'menu_owner' from camp2._menu where caption = 'Home';
81
insert into camp2._menu select null,_menu_id,'Locations', '/index.php?action=location', 'menu_location' from camp2._menu where caption = 'Home';
82
insert into camp2._menu select null,_menu_id,'Devices', '/index.php?action=device', 'menu_device' from camp2._menu where caption = 'Home';
83
insert into camp2._menu values (null,null,'Reports', '/index.php?action=report', 'menu_report' );
33 rodolico 84
 
85
/*
86
   simple table to hold ownership information
87
*/
46 rodolico 88
drop table if exists owner;
89
create table owner (
90
   owner_id       int unsigned not null auto_increment,
91
   name           varchar(64) comment 'name of owner',
33 rodolico 92
   created        date comment 'date record was created',
93
   removed        date comment 'date record was removed',
46 rodolico 94
   primary key    (owner_id)
95
) comment 'hold owner information';
33 rodolico 96
 
97
/*
46 rodolico 98
   simple table to hold location where a device is located
33 rodolico 99
*/
46 rodolico 100
drop table if exists location;
101
create table location (
102
   location_id    int unsigned not null auto_increment,
103
   name           varchar(64) comment 'name of location',
33 rodolico 104
   created        date comment 'date record was created',
105
   removed        date comment 'date record was removed',
46 rodolico 106
   primary key    (location_id)
107
) comment 'hold location information';
33 rodolico 108
 
109
/*
110
   table which holds a device type, such as server, workstation
111
   printer, virtual, etc...
112
*/
113
drop table if exists device_type;
114
create table device_type (
115
   device_type_id int unsigned not null auto_increment,
116
   name           varchar(64) comment 'name of device type',
46 rodolico 117
   is_system      boolean comment 'if true, this is a system, ie a computer or virtual',
33 rodolico 118
   created        date comment 'date record was created',
119
   removed        date comment 'date record was removed',
120
   primary key    (device_type_id)
121
) comment 'simple child table to determine the type of device we have';
122
 
123
/*
40 rodolico 124
   holds very basic information on a device such as its name and a unique id.
125
   This is the main table for the database, and each device
33 rodolico 126
   should be uniquely identified. We will allow name to be modified
127
   randomly, however.
128
 
129
   Internally, we find this device based on device_id, but for remote
130
   systems, we use the combined uuid and serial to uniquely identify
131
   some manufacturers use one uuid for all systems, but the uuid and serial
132
   number combination should be unique. serial can be any arbitrary string
133
   and it is suggested to use manufacturer:serial or something like that
134
*/
135
drop table if exists device;
136
create table device (
137
   device_id      int unsigned not null auto_increment,
40 rodolico 138
   uuid           varchar(36) comment 'unique id of this device, normally uuid',
33 rodolico 139
   serial         varchar(32) comment 'serial number of this device, if we have it',
140
   name           varchar(64) comment 'name of device',
141
   created        date comment 'date record was created',
142
   removed        date comment 'date record was removed',
40 rodolico 143
   unique key     unique_uuid( uuid, serial ),
33 rodolico 144
   primary key    (device_id)
145
) comment 'holds individual devices';
146
 
40 rodolico 147
/*
148
   Many to many join table allowing devices to have multiple device
149
   types. NOTE: I'm using device_id and device_type_id as the composite
150
   primary key, so no duplicates, and we don't need an 'id' column
151
*/
33 rodolico 152
 
40 rodolico 153
drop table if exists device_device_type;
154
create table device_device_type (
155
   device_id      int unsigned not null references device( device_id ),
156
   device_type_id int unsigned not null references device_type( device_type_id ),
157
   primary key (device_id,device_type_id)
158
) comment 'many to many join for device and device_type tables';
159
 
33 rodolico 160
/*
46 rodolico 161
   Set ownership of a location. These records are not deleted, but by
33 rodolico 162
   setting field removed to non-null value, then creating a new record,
46 rodolico 163
   we can track ownership of locations.
33 rodolico 164
*/
46 rodolico 165
drop table if exists owner_location;
166
create table owner_location (
167
   owner_location_id int unsigned not null auto_increment,
168
   owner_id      int unsigned not null references owner( owner_id ),
169
   location_id        int unsigned not null references location( location_id ),
33 rodolico 170
   created        date comment 'date record was created',
171
   removed        date comment 'date record was removed',
46 rodolico 172
   index          location_device ( owner_id,location_id ),
173
   primary key    (owner_location_id)
174
) comment 'links ownership of a location to a owner';   
33 rodolico 175
 
176
/*
177
   Set location of a device. These records are not deleted, but by
178
   setting field removed to non-null value, then creating a new record,
179
   we can track movement of devices.
180
*/
46 rodolico 181
drop table if exists location_device;
182
create table location_device (
183
   location_device_id int unsigned not null auto_increment,
184
   location_id        int unsigned not null references location( location_id ),
33 rodolico 185
   device_id      int unsigned not null references device( device_id ),
186
   created        date comment 'date record was created',
187
   removed        date comment 'date record was removed',
46 rodolico 188
   index          location_device ( location_id,device_id ),
189
   primary key    (location_device_id)
33 rodolico 190
) comment 'links a device to its location';
191
 
192
/*
193
   Set ownership of a device. These records are not deleted, but by
194
   setting field removed to non-null value, then creating a new record,
195
   we can track ownership of devices.
196
*/
46 rodolico 197
drop table if exists owner_device;
198
create table owner_device (
199
   owner_device_id  int unsigned not null auto_increment,
200
   owner_id      int unsigned not null references owner( owner_id ),
33 rodolico 201
   device_id      int unsigned not null references device( device_id ),
202
   created        date comment 'date record was created',
203
   removed        date comment 'date record was removed',
46 rodolico 204
   index          owner_device( owner_id, device_id ),
205
   primary key    ( owner_device_id )
33 rodolico 206
) comment 'links a device to its owner';
207
 
208
/*
209
   There can be a parent/child relationship with devices. For example, a virtual
210
   resides on a DOM0, so the parent_id of a DOMU is the device_id of the DOM0.
211
   or, a printer can be attached to a computer, so the printers parent is the
212
   device_id of the computer it is attached to.
213
*/
214
drop table if exists device_device;
215
create table device_device (
216
   device_device_id int unsigned not null auto_increment,
217
   device_id      int unsigned not null references device( device_id ),
218
   parent_id      int unsigned not null references device( device_id ),
219
   created        date comment 'date record was created',
220
   removed        date comment 'date record was removed',
221
   index          device_device( device_id, parent_id ),
222
   primary key    ( device_device_id )
223
) comment 'links a device to another device';
224
 
225
 
40 rodolico 226
/* 
227
   Some views so we don't have to reinvent the wheel when we're trying
228
   to grab some data
229
*/
230
 
231
/*
232
  a simple view that concats the values in device_device_type for 
233
  display. Since mySQL will not allow subqueries in views, required
46 rodolico 234
  to have this information in view_device_location_owner_type
40 rodolico 235
*/
46 rodolico 236
create or replace view view_device_types as
40 rodolico 237
   select 
238
      device_id,
239
      group_concat(distinct device_type.name) as device_types 
240
   from 
241
      device_device_type 
242
      join device_type using (device_type_id ) 
243
   group by device_id 
244
   order by name;
245
 
246
/*
247
   Mongo view that gets all the information together to display
248
   device name, location, owner and type(s)
249
*/
250
 
46 rodolico 251
create or replace view view_device_location_owner_type as
33 rodolico 252
   select
40 rodolico 253
      device.device_id device_id,
254
      device.uuid uuid,
255
      device.serial serial,
33 rodolico 256
      device.name device,
257
      device.created device_created,
258
      device.removed device_removed,
40 rodolico 259
      view_device_types.device_types,
46 rodolico 260
      location.location_id location_id,
261
      location.name location,
262
      location.created location_created,
263
      location.removed location_removed,
264
      owner.owner_id owner_id,
265
      owner.name owner,
266
      owner.created owner_created,
267
      owner.removed owner_removed
33 rodolico 268
   from
269
      device
40 rodolico 270
      join view_device_types using (device_id )
46 rodolico 271
      join location_device using (device_id)
272
      join location using (location_id)
273
      join owner_device using (device_id)
274
      join owner using (owner_id);
36 rodolico 275
 
40 rodolico 276
 
277
insert into _system ( key_value, group_name, key_name ) values ( '0.1','database','version' ) 
278
   on duplicate key update key_value = '0.1';