blob: b64aa6507a55027153bc9a8e82c33d874fdfb553 [file] [log] [blame]
Matteo Scandolo4e200f52017-10-02 16:28:48 -07001option app_label = "mcord";
2option name = "mcord";
3
4message MCordSubscriberService (Service) {
5 option verbose_name = "MCORD Service";
6 option description = "The Mobile Subscriber service in CORD";
7}
8
9message MCordSubscriberInstance (ServiceInstance) {
10 option verbose_name = "MCORD Subscriber";
11 option description = "This model holds the informations of a Mobile Subscriber in CORD";
12
13 required string imsi_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
14 required string apn_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
15}