aboutsummaryrefslogtreecommitdiff
path: root/h-source/tables.sql
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2012-09-09 14:08:19 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2012-09-09 14:08:19 +0000
commit93f681d5bd99d28acdb1e4c6eb3e5bbc4a6842bf (patch)
tree16fa123a4141006cd2413326d34ca17df310d983 /h-source/tables.sql
parent090c0fa2d0a40176e4c1e77f5892e734a1fa7feb (diff)
added the entry: 'does the device prevent the installation of wifi cards not-approved by the vendor?' - part 1
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 31d7643..2cdcdad 100644
--- a/h-source/tables.sql
+++ b/h-source/tables.sql
@@ -169,6 +169,7 @@ CREATE TABLE IF NOT EXISTS `hardware` (
`sd_card_works` varchar(30) NOT NULL DEFAULT 'not-specified',
`can_free_systems_be_installed` varchar(30) NOT NULL DEFAULT 'not-specified',
`it_tracks_users` varchar(30) NOT NULL DEFAULT 'not-specified',
+ `prevent_wifi` char(20) NOT NULL DEFAULT 'not-specified',
PRIMARY KEY (`id_hard`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=503 ;
@@ -418,6 +419,7 @@ CREATE TABLE IF NOT EXISTS `revisions` (
`sd_card_works` varchar(30) NOT NULL DEFAULT 'not-specified',
`can_free_systems_be_installed` varchar(30) NOT NULL DEFAULT 'not-specified',
`it_tracks_users` varchar(30) NOT NULL DEFAULT 'not-specified',
+ `prevent_wifi` char(20) NOT NULL DEFAULT 'not-specified',
PRIMARY KEY (`id_rev`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=627 ;