Matteo Scandolo | 4e200f5 | 2017-10-02 16:28:48 -0700 | [diff] [blame] | 1 | option app_label = "mcord"; |
| 2 | option name = "mcord"; |
| 3 | |
| 4 | message MCordSubscriberService (Service) { |
| 5 | option verbose_name = "MCORD Service"; |
| 6 | option description = "The Mobile Subscriber service in CORD"; |
| 7 | } |
| 8 | |
| 9 | message 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 | } |