aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-03-01 16:43:28 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-03-01 16:43:28 +0000
commit632f611689562bb79dfb18065b6d0851a5c2077e (patch)
tree88bf555767f641934d1d9ee6359d6399992ecc11 /h-source/tables.sql
parente9973f35a33f0ad72ff2fbd74250283d0e23e375 (diff)
added bluetooth - part 1
Diffstat (limited to 'h-source/tables.sql')
-rw-r--r--h-source/tables.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/h-source/tables.sql b/h-source/tables.sql
index c04e4d3..e914867 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -95,7 +95,8 @@ create table hardware (
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',
- sound_card_works varchar(30) CHARACTER SET utf8 not null default 'not-specified'
+ sound_card_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
+ bluetooth_works varchar(30) CHARACTER SET utf8 not null default 'not-specified'
)engine=innodb;
create table revisions (
@@ -124,6 +125,7 @@ create table revisions (
webcam_type varchar(100) CHARACTER SET utf8 not null,
webcam_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
sound_card_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
+ bluetooth_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
id_hard INT UNSIGNED NOT NULL
)engine=innodb;