aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-10-03 08:18:08 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-10-03 08:18:08 +0000
commit2f0587286b4e433b96a7db5db60a0dd94617f485 (patch)
treecc84a0899bd3fb380998005bbeb89fcddabd7220 /h-source/tables.sql
parentfab22f5ebb7c5f757e48292a7f8de605638b7213 (diff)
added the field can free systems be installed to notebooks category - Michał Masłowski suggestion
Diffstat (limited to 'h-source/tables.sql')
-rw-r--r--h-source/tables.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/h-source/tables.sql b/h-source/tables.sql
index 59fee95..9b9e8ab 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -102,6 +102,7 @@ create table hardware (
fingerprint_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
ethernet-card_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
sd_card_works varchar(30) CHARACTER SET utf8 not null default 'not-specified',
+ can_free_systems_be_installed 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
)engine=innodb;
@@ -140,6 +141,7 @@ create table revisions (
other_names text CHARACTER SET utf8 not null,
approved char(4) not null default 'yes',
cleared char(3) not null default 'no',
+ can_free_systems_be_installed varchar(30) CHARACTER SET utf8 not null default 'not-specified',
id_hard INT UNSIGNED NOT NULL
)engine=innodb;