Changeset 200 for trunk


Ignore:
Timestamp:
Apr 23, 2014, 9:57:52 PM (10 years ago)
Author:
roby
Message:

INTEGRAZIONE DELL'AGGIORNAMENTO SQL DELLA REV 199

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sql/aggiornamento-2.0_2014-04-22.sql

    r199 r200  
    88-- PHP Version: 5.5.9
    99
    10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
    11 SET time_zone = "+00:00";
     10DROP TABLE `soraldo_ele_conf`;
     11CREATE 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 ;
    1232
    1333
    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 */;
     40LOCK TABLES `soraldo_ele_conf` WRITE;
     41INSERT 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);
     49UNLOCK TABLES;
     50/*!40000 ALTER TABLE `soraldo_ele_conf` ENABLE KEYS */;
     51
    1852
    1953--
     
    2660-- Struttura della tabella `soraldo_ele_fasce`
    2761--
     62DROP TABLE `soraldo_ele_fasce`;
    2863
    2964CREATE TABLE IF NOT EXISTS `soraldo_ele_fasce` (
Note: See TracChangeset for help on using the changeset viewer.