Changeset 200
- Timestamp:
- Apr 23, 2014, 9:57:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sql/aggiornamento-2.0_2014-04-22.sql
r199 r200 8 8 -- PHP Version: 5.5.9 9 9 10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 SET time_zone = "+00:00"; 10 DROP TABLE `soraldo_ele_conf`; 11 CREATE TABLE `soraldo_ele_conf` ( 12 `id_conf` int(11) NOT NULL AUTO_INCREMENT, 13 `descrizione` varchar(50) NOT NULL, 14 `limite` int(2) NOT NULL, 15 `consin` enum('0','1') NOT NULL DEFAULT '1', 16 `infpremio` int(3) NOT NULL, 17 `supsbarramento` int(3) NOT NULL, 18 `suppremio` int(3) NOT NULL, 19 `listinfsbar` int(3) NOT NULL DEFAULT '1', 20 `listinfconta` enum('0','1') NOT NULL DEFAULT '1', 21 `listsupconta` enum('0','1') NOT NULL DEFAULT '1', 22 `supminpremio` int(3) NOT NULL, 23 `infminpremio` int(3) NOT NULL, 24 `infdisgiunto` enum('0','1') NOT NULL DEFAULT '0', 25 `supdisgiunto` enum('0','1') NOT NULL DEFAULT '0', 26 `votolista` enum('0','1') NOT NULL DEFAULT '0', 27 `inffisso` enum('0','1') NOT NULL DEFAULT '0', 28 `supfisso` enum('0','1') NOT NULL DEFAULT '0', 29 `fascia_capoluogo` int(2) NOT NULL DEFAULT '0', 30 PRIMARY KEY (`id_conf`) 31 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; 12 32 13 33 14 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 15 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 16 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 17 /*!40101 SET NAMES utf8 */; 34 -- 35 -- Dumping data for table `soraldo_ele_conf` 36 -- 37 38 39 /*!40000 ALTER TABLE `soraldo_ele_conf` DISABLE KEYS */; 40 LOCK TABLES `soraldo_ele_conf` WRITE; 41 INSERT INTO `soraldo_ele_conf` (`id_conf`, `descrizione`, `limite`, `consin`, `infpremio`, `supsbarramento`, `suppremio`, `listinfsbar`, `listinfconta`, `listsupconta`, `supminpremio`, `infminpremio`, `infdisgiunto`, `supdisgiunto`, `votolista`, `inffisso`, `supfisso`, `fascia_capoluogo`) VALUES 42 (1, 'Legge Italiana 267/2000', 3, '1', 67, 3, 60, 3, '1', '1', 40, 40, '0', '0', '0', '0', '0', 6), 43 (2, 'Regione Sicilia precedente al 2008', 2, '0', 67, 3, 60, 3, '1', '1', 40, 40, '0', '0', '0', '0', '0', 6), 44 (3, 'Regione Sicilia Legge n. 22 del 16/12/2008', 2, '0', 67, 5, 60, 3, '1', '0', 40, 40, '0', '0', '0', '0', '0', 7), 45 (4, 'Regione Sicilia Legge n.6/2011', 5, '1', 67, 5, 60, 5, '1', '1', 40, 40, '1', '1', '0', '0', '0', 7), 46 (5, 'Legge Italiana 267/2000 con riduzione 2011', 3, '1', 67, 3, 60, 3, '1', '1', 40, 40, '0', '0', '0', '0', '0', 7), 47 (6, 'Legge Italiana 267/2000 con riduzione 2012', 3, '1', 67, 3, 60, 3, '1', '1', 40, 40, '0', '0', '0', '0', '0', 7); 48 (7, 'Legge Italiana 267/2000 con modifiche 2014', 3, '1', 67, 3, 60, 3, '1', '1', 40, 40, '0', '0', '0', '0', '0', 6); 49 UNLOCK TABLES; 50 /*!40000 ALTER TABLE `soraldo_ele_conf` ENABLE KEYS */; 51 18 52 19 53 -- … … 26 60 -- Struttura della tabella `soraldo_ele_fasce` 27 61 -- 62 DROP TABLE `soraldo_ele_fasce`; 28 63 29 64 CREATE TABLE IF NOT EXISTS `soraldo_ele_fasce` (
Note:
See TracChangeset
for help on using the changeset viewer.