Changeset 10621 for freepbx/trunk

Show
Ignore:
Timestamp:
11/28/10 12:08:05 (2 years ago)
Author:
p_lindheimer
Message:

closes #4665 feature codes are created in core's install script and don't need to be inserted into the db here

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/SQL/newinstall.sql

    r10607 r10621  
    133133  KEY `enabled` (`enabled`) 
    134134); 
    135  
    136 -- 
    137 -- Dumping data for table `featurecodes` 
    138 -- 
    139  
    140  
    141 /*!40000 ALTER TABLE `featurecodes` DISABLE KEYS */; 
    142 -- LOCK TABLES `featurecodes` WRITE; 
    143 INSERT INTO `featurecodes` VALUES ('core','userlogon','User Logon','*11',NULL,1); 
    144 INSERT INTO `featurecodes` VALUES ('core','userlogoff','User Logoff','*12',NULL,1); 
    145 INSERT INTO `featurecodes` VALUES ('core','zapbarge','ZapBarge','888',NULL,1); 
    146 INSERT INTO `featurecodes` VALUES ('core','simu_pstn','Simulate Incoming Call','7777',NULL,1); 
    147 INSERT INTO `featurecodes` VALUES ('core','simu_fax','Simulate Incoming FAX Call','666',NULL,1); 
    148 INSERT INTO `featurecodes` VALUES ('core','chanspy','ChanSpy','555',NULL,1); 
    149 INSERT INTO `featurecodes` VALUES ('core','pickup','Call Pickup (Can be used with GXP-2000)','**',NULL,1); 
    150 -- UNLOCK TABLES; 
    151 /*!40000 ALTER TABLE `featurecodes` ENABLE KEYS */; 
    152135 
    153136-- 
  • freepbx/trunk/SQL/newinstall.sqlite3.sql

    r10607 r10621  
    5050--   KEY `enabled` (`enabled`) 
    5151); 
    52 INSERT INTO "featurecodes" VALUES('core', 'userlogon', 'User Logon', '*11', NULL, 1); 
    53 INSERT INTO "featurecodes" VALUES('core', 'userlogoff', 'User Logoff', '*12', NULL, 1); 
    54 INSERT INTO "featurecodes" VALUES('core', 'zapbarge', 'ZapBarge', '888', NULL, 1); 
    55 INSERT INTO "featurecodes" VALUES('core', 'simu_pstn', 'Simulate Incoming Call', '7777', NULL, 1); 
    56 INSERT INTO "featurecodes" VALUES('core', 'simu_fax', 'Dial System FAX', '666', NULL, 1); 
    57 INSERT INTO "featurecodes" VALUES('core', 'chanspy', 'ChanSpy', '555', NULL, 1); 
    58 INSERT INTO "featurecodes" VALUES('core', 'pickup', 'Directed Call Pickup', '**', NULL, 1); 
    59 INSERT INTO "featurecodes" VALUES('core', 'pickupexten', 'Asterisk General Call Pickup', '*8', NULL, 1); 
    60 INSERT INTO "featurecodes" VALUES('core', 'blindxfer', 'In-Call Asterisk Blind Transfer', '##', NULL, 1); 
    61 INSERT INTO "featurecodes" VALUES('core', 'atxfer', 'In-Call Asterisk Attended Transfer', '*2', NULL, 1); 
    62 INSERT INTO "featurecodes" VALUES('core', 'automon', 'In-Call Asterisk Toggle Call Recording', '*1', NULL, 1); 
    63 INSERT INTO "featurecodes" VALUES('core', 'disconnect', 'In-Call Asterisk Disconnect Code', '**', NULL, 1); 
    64 INSERT INTO "featurecodes" VALUES('voicemail', 'myvoicemail', 'My Voicemail', '*97', NULL, 1); 
    65 INSERT INTO "featurecodes" VALUES('voicemail', 'dialvoicemail', 'Dial Voicemail', '*98', NULL, 1); 
    66 INSERT INTO "featurecodes" VALUES('recordings', 'record_save', 'Save Recording', '*77', NULL, 1); 
    67 INSERT INTO "featurecodes" VALUES('recordings', 'record_check', 'Check Recording', '*99', NULL, 1); 
    6852CREATE TABLE `freepbx_log` ( 
    6953  `id` integer NOT NULL PRIMARY KEY AUTOINCREMENT,