blob: 5a5124eaec64100b011ba0d87ea41326867aa4a4 [file] [log] [blame]
Matteo Scandolo4e200f52017-10-02 16:28:48 -07001option app_label = "mcord";
2option name = "mcord";
Matteo Scandoloc48a0fc2018-01-31 11:38:11 -08003option legacy = "True";
Matteo Scandolo4e200f52017-10-02 16:28:48 -07004
5message MCordSubscriberService (Service) {
6 option verbose_name = "MCORD Service";
7 option description = "The Mobile Subscriber service in CORD";
8}
9
10message MCordSubscriberInstance (ServiceInstance) {
Matteo Scandoloc48a0fc2018-01-31 11:38:11 -080011 option verbose_name = "MCORD Subscriber";
12 option description = "This model holds the informations of a Mobile Subscriber in CORD";
Matteo Scandolo4e200f52017-10-02 16:28:48 -070013
Matteo Scandoloc48a0fc2018-01-31 11:38:11 -080014 required string imsi_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
15 optional string apn_number = 2 [max_length = 30, content_type = "stripped", blank = True, null = True, db_index = False];
Matteo Scandolo178fca82018-02-14 15:21:29 -080016 optional int32 ue_status = 3 [default = "0", choices = "(('0', 'Detached'), ('1', 'Attached'))", blank = True, null = True, db_index = False];
Matteo Scandolo56e1f772018-02-05 13:15:54 -080017 optional string created_by = 4 [null = True, blank = True, gui_hidden = True];
Matteo Scandolo4e200f52017-10-02 16:28:48 -070018}