aboutsummaryrefslogtreecommitdiffstats
path: root/sql/hlr.sql
diff options
context:
space:
mode:
authorPiotr Krysik <pkrysik@elka.pw.edu.pl>2019-08-22 11:18:15 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2019-12-23 18:05:21 +0100
commit6e24a483a92ea8b35448cdc5f0d238ae9be0c8c1 (patch)
tree190d987f99eddaaa7dfe5c4879ec870ad485006e /sql/hlr.sql
parent4dd28f4150c5260fb0e3aca537f304c9c36b39ed (diff)
Enabling/disabling 4G RAN for given subscriberneels/36c3
The change adds support for enabling and disabling connection through 4G RAN by a subscriber with use of USSD codes. Change-Id: Idf964d9c770a0a1cb5c486eb2a7592d6bf44171c
Diffstat (limited to 'sql/hlr.sql')
-rw-r--r--sql/hlr.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hlr.sql b/sql/hlr.sql
index 209deb0..5c470f4 100644
--- a/sql/hlr.sql
+++ b/sql/hlr.sql
@@ -97,7 +97,7 @@ CREATE TABLE ind (
-- If a subscriber has no entry, that means that all RATs are allowed (backwards compat).
CREATE TABLE subscriber_rat (
subscriber_id INTEGER, -- subscriber.id
- rat TEXT CHECK(rat in ('GERAN-A', 'UTRAN-Iu')) NOT NULL, -- Radio Access Technology, see enum ran_type
+ rat TEXT CHECK(rat in ('GERAN-A', 'UTRAN-Iu','EUTRAN-SGs')) NOT NULL, -- Radio Access Technology, see enum ran_type
allowed BOOLEAN CHECK(allowed in (0, 1)) NOT NULL DEFAULT 0
);