aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/tables.sql')
-rw-r--r--h-source/tables.sql8
1 files changed, 7 insertions, 1 deletions
diff --git a/h-source/tables.sql b/h-source/tables.sql
index ae0d1c1..7ecd6d8 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -91,7 +91,10 @@ create table hardware (
deleted char(4) not null default 'no',
pci_id char(10) not null,
driver varchar(50) not null,
- interface char(15) not null default 'not-specified'
+ interface char(15) not null default 'not-specified',
+ bios char(15) not null default 'not-specified',
+ webcam_type varchar(100) CHARACTER SET utf8 not null,
+ webcam_works varchar(30) CHARACTER SET utf8 not null default 'not-specified'
)engine=innodb;
create table revisions (
@@ -116,6 +119,9 @@ create table revisions (
pci_id char(10) not null,
driver varchar(50) not null,
interface char(15) not null default 'not-specified',
+ bios char(15) not null default 'not-specified',
+ webcam_type varchar(100) CHARACTER SET utf8 not null,
+ webcam_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
id_hard INT UNSIGNED NOT NULL
)engine=innodb;