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.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/h-source/tables.sql b/h-source/tables.sql
index c3e69fe..08bdfa6 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -98,7 +98,8 @@ create table hardware (
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'
+ architecture char(15) not null default 'not-specified',
+ other_names text CHARACTER SET utf8 not null
)engine=innodb;
create table revisions (
@@ -130,6 +131,7 @@ create table revisions (
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',
+ other_names text CHARACTER SET utf8 not null,
id_hard INT UNSIGNED NOT NULL
)engine=innodb;