/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATETABLE`terminal-info`(
`imei`varchar(15)NOTNULL,
`sv`varchar(2)NOTNULL,
UNIQUEKEY`imei`(`imei`)
)ENGINE=InnoDBDEFAULTCHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `terminal-info`
--
LOCKTABLES`terminal-info`WRITE;
/*!40000 ALTER TABLE `terminal-info` DISABLE KEYS */;
/*!40000 ALTER TABLE `terminal-info` ENABLE KEYS */;
UNLOCKTABLES;
--
-- Table structure for table `users`
--
DROPTABLEIFEXISTS`users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATETABLE`users`(
`imsi`varchar(15)NOTNULLCOMMENT'IMSI is the main reference key.',
`msisdn`varchar(46)DEFAULTNULLCOMMENT'The basic MSISDN of the UE (Presence of MSISDN is optional).',
`imei`varchar(15)DEFAULTNULLCOMMENT'International Mobile Equipment Identity',
`imei_sv`varchar(2)DEFAULTNULLCOMMENT'International Mobile Equipment Identity Software Version Number',
`ms_ps_status`enum('PURGED','NOT_PURGED')DEFAULT'PURGED'COMMENT'Indicates that ESM and EMM status are purged from MME',
`rau_tau_timer`int(10)unsignedDEFAULT'120',
`ue_ambr_ul`bigint(20)unsignedDEFAULT'50000000'COMMENT'The Maximum Aggregated uplink MBRs to be shared across all Non-GBR bearers according to the subscription of the user.',
`ue_ambr_dl`bigint(20)unsignedDEFAULT'100000000'COMMENT'The Maximum Aggregated downlink MBRs to be shared across all Non-GBR bearers according to the subscription of the user.',
`access_restriction`int(10)unsignedDEFAULT'60'COMMENT'Indicates the access restriction subscription information. 3GPP TS.29272 #7.3.31',
`mme_cap`int(10)unsignedzerofillDEFAULTNULLCOMMENT'Indicates the capabilities of the MME with respect to core functionality e.g. regional access restrictions.',
`RFSP-Index`smallint(5)unsignedNOTNULLDEFAULT'1'COMMENT'An index to specific RRM configuration in the E-UTRAN. Possible values from 1 to 256',
`urrp_mme`tinyint(1)NOTNULLDEFAULT'0'COMMENT'UE Reachability Request Parameter indicating that UE activity notification from MME has been requested by the HSS.',
`sqn`bigint(20)unsignedzerofillNOTNULL,
`rand`varbinary(16)NOTNULL,
`OPc`varbinary(16)DEFAULTNULLCOMMENT'Can be computed by HSS',