aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-05-08 15:52:39 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-05-08 15:52:39 +0000
commita60b8d9cc5078a894e007e5252313185e9810c2e (patch)
tree2c75fac7220078d65c10c2c489aaae66d44d4b05 /h-source/tables.sql
parent929e290e5241c4c759be287495214e60352eb43c (diff)
h-source:added architecture entry for notebooks
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 34c8ab9..c3e69fe 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -97,7 +97,8 @@ create table hardware (
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',
- fingerprint_works varchar(30) CHARACTER SET utf8 not null default 'not-specified'
+ fingerprint_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
+ architecture char(15) not null default 'not-specified'
)engine=innodb;
create table revisions (
@@ -128,6 +129,7 @@ create table revisions (
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',
fingerprint_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
+ architecture char(15) not null default 'not-specified',
id_hard INT UNSIGNED NOT NULL
)engine=innodb;