6120 lines
254 KiB
MySQL
6120 lines
254 KiB
MySQL
![]() |
-- MySQL dump 10.13 Distrib 5.7.11, for Win64 (x86_64)
|
|||
|
--
|
|||
|
-- Host: localhost Database: 1ka_clean
|
|||
|
-- ------------------------------------------------------
|
|||
|
-- Server version 5.7.11
|
|||
|
|
|||
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|||
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|||
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|||
|
/*!40101 SET NAMES utf8 */;
|
|||
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|||
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|||
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|||
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|||
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|||
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `aai_prenosi`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `aai_prenosi`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `aai_prenosi` (
|
|||
|
`timestamp` int(10) unsigned DEFAULT NULL,
|
|||
|
`moja` varchar(500) DEFAULT NULL,
|
|||
|
`njegova` varchar(500) DEFAULT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `aai_prenosi`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `aai_prenosi` WRITE;
|
|||
|
/*!40000 ALTER TABLE `aai_prenosi` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `aai_prenosi` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `clan`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `clan`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `clan` (
|
|||
|
`menu` int(10) NOT NULL DEFAULT '0',
|
|||
|
`clan` int(10) NOT NULL DEFAULT '0'
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `clan`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `clan` WRITE;
|
|||
|
/*!40000 ALTER TABLE `clan` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `clan` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `fb_users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `fb_users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `fb_users` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`first_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
|||
|
`last_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
|||
|
`gender` varchar(2) DEFAULT NULL,
|
|||
|
`timezone` varchar(5) DEFAULT NULL,
|
|||
|
`profile_link` varchar(255) DEFAULT NULL,
|
|||
|
KEY `id` (`id`)
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `fb_users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `fb_users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `fb_users` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `fb_users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `forum`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `forum`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `forum` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`parent` int(11) NOT NULL DEFAULT '0',
|
|||
|
`ord` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`opis` tinytext NOT NULL,
|
|||
|
`display` int(11) NOT NULL DEFAULT '1',
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`click` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`thread` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`user` int(11) NOT NULL DEFAULT '0',
|
|||
|
`clan` int(11) NOT NULL DEFAULT '0',
|
|||
|
`admin` int(11) NOT NULL DEFAULT '0',
|
|||
|
`ocena` int(11) NOT NULL DEFAULT '0',
|
|||
|
`lockedauth` int(11) NOT NULL DEFAULT '0',
|
|||
|
`NiceLink` varchar(255) NOT NULL DEFAULT '',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `admin_index` (`admin`),
|
|||
|
KEY `user_index` (`user`),
|
|||
|
FULLTEXT KEY `naslov` (`naslov`),
|
|||
|
FULLTEXT KEY `NiceLink` (`NiceLink`),
|
|||
|
FULLTEXT KEY `NiceLink_2` (`NiceLink`)
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `forum`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `forum` WRITE;
|
|||
|
/*!40000 ALTER TABLE `forum` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `forum` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `manager`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `manager`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `manager` (
|
|||
|
`menu` int(10) NOT NULL DEFAULT '0',
|
|||
|
`manager` int(10) NOT NULL DEFAULT '0'
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `manager`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `manager` WRITE;
|
|||
|
/*!40000 ALTER TABLE `manager` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `manager` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `manager_clan`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `manager_clan`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `manager_clan` (
|
|||
|
`manager` int(10) NOT NULL DEFAULT '0',
|
|||
|
`clan` int(10) NOT NULL DEFAULT '0'
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `manager_clan`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `manager_clan` WRITE;
|
|||
|
/*!40000 ALTER TABLE `manager_clan` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `manager_clan` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_app_users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_app_users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_app_users` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`identifier` varchar(16) NOT NULL,
|
|||
|
`registration_id` varchar(255) DEFAULT NULL,
|
|||
|
`datetime_inserted` datetime DEFAULT CURRENT_TIMESTAMP,
|
|||
|
`datetime_last_active` datetime DEFAULT NULL,
|
|||
|
`deviceInfo` text,
|
|||
|
`tracking_log` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_app_users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_app_users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_app_users` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_app_users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_srv_activity`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_srv_activity`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_srv_activity` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`activity_on` tinyint(1) DEFAULT '0',
|
|||
|
`notif_title` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`notif_message` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`notif_sound` tinyint(1) DEFAULT '0',
|
|||
|
`activity_type` varchar(30) DEFAULT 'path',
|
|||
|
`after_seconds` int(11) DEFAULT '300',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_maza_activity_srv_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `fk_maza_activity_srv_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_srv_activity`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_srv_activity` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_activity` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_activity` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_srv_alarms`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_srv_alarms`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_srv_alarms` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`alarm_on` tinyint(1) DEFAULT '0',
|
|||
|
`alarm_notif_title` varchar(100) DEFAULT '',
|
|||
|
`alarm_notif_message` varchar(100) DEFAULT '',
|
|||
|
`repeat_by` varchar(30) DEFAULT 'everyday',
|
|||
|
`alarm_notif_sound` tinyint(1) DEFAULT '0',
|
|||
|
`time_in_day` varchar(255) DEFAULT NULL,
|
|||
|
`day_in_week` varchar(255) DEFAULT NULL,
|
|||
|
`every_which_day` int(3) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_maza_srv_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `fk_maza_srv_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_srv_alarms`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_srv_alarms` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_alarms` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_alarms` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_srv_geofences`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_srv_geofences`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_srv_geofences` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`geofence_on` tinyint(1) DEFAULT '0',
|
|||
|
`lat` float(19,15) NOT NULL,
|
|||
|
`lng` float(19,15) NOT NULL,
|
|||
|
`radius` float(21,13) NOT NULL,
|
|||
|
`address` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`notif_title` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`notif_message` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`notif_sound` tinyint(1) DEFAULT '0',
|
|||
|
`on_transition` varchar(30) DEFAULT 'dwell',
|
|||
|
`after_seconds` int(11) DEFAULT '300',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `fk_maza_geofences_srv_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_srv_geofences`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_srv_geofences` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_geofences` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_geofences` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_srv_repeaters`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_srv_repeaters`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_srv_repeaters` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`repeater_on` tinyint(1) DEFAULT '0',
|
|||
|
`repeat_by` varchar(30) DEFAULT 'everyday',
|
|||
|
`time_in_day` varchar(255) DEFAULT NULL,
|
|||
|
`day_in_week` varchar(255) DEFAULT NULL,
|
|||
|
`every_which_day` int(3) DEFAULT NULL,
|
|||
|
`datetime_start` datetime DEFAULT NULL,
|
|||
|
`datetime_end` datetime DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_maza_repeater_srv_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `fk_maza_repeater_srv_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_srv_repeaters`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_srv_repeaters` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_repeaters` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_repeaters` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_srv_triggered_geofences`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_srv_triggered_geofences`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_srv_triggered_geofences` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`geof_id` int(11) NOT NULL,
|
|||
|
`maza_user_id` int(11) NOT NULL,
|
|||
|
`triggered_timestamp` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `geof_id` (`geof_id`),
|
|||
|
KEY `maza_user_id` (`maza_user_id`),
|
|||
|
CONSTRAINT `fk_maza_srv_triggered_geofences_geof_id` FOREIGN KEY (`geof_id`) REFERENCES `maza_srv_geofences` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_maza_srv_triggered_geofences_maza_user_id` FOREIGN KEY (`maza_user_id`) REFERENCES `maza_app_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_srv_triggered_geofences`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_srv_triggered_geofences` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_triggered_geofences` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_triggered_geofences` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_srv_users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_srv_users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_srv_users` (
|
|||
|
`maza_user_id` int(11) NOT NULL,
|
|||
|
`srv_user_id` int(11) NOT NULL,
|
|||
|
`srv_version_datetime` datetime DEFAULT NULL,
|
|||
|
`geof_id` int(11) DEFAULT NULL,
|
|||
|
`activity_id` int(11) DEFAULT NULL,
|
|||
|
KEY `fk_maza_app_users_maza_srv_users` (`maza_user_id`),
|
|||
|
KEY `fk_srv_user_maza_srv_users` (`srv_user_id`),
|
|||
|
KEY `fk_maza_srv_users_geof_id` (`geof_id`),
|
|||
|
KEY `fk_maza_srv_users_activity_id` (`activity_id`),
|
|||
|
CONSTRAINT `fk_maza_app_users_maza_srv_users` FOREIGN KEY (`maza_user_id`) REFERENCES `maza_app_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_maza_srv_users_activity_id` FOREIGN KEY (`activity_id`) REFERENCES `maza_srv_activity` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_maza_srv_users_geof_id` FOREIGN KEY (`geof_id`) REFERENCES `maza_srv_geofences` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_user_maza_srv_users` FOREIGN KEY (`srv_user_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_srv_users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_srv_users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_users` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_srv_users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `maza_user_srv_access`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `maza_user_srv_access`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `maza_user_srv_access` (
|
|||
|
`maza_user_id` int(11) NOT NULL,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`datetime_started` datetime DEFAULT NULL,
|
|||
|
KEY `fk_maza_app_users_maza_user_srv_access` (`ank_id`),
|
|||
|
KEY `fk_srv_anketa_maza_user_srv_access` (`maza_user_id`),
|
|||
|
CONSTRAINT `fk_maza_app_users_maza_user_srv_access` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_anketa_maza_user_srv_access` FOREIGN KEY (`maza_user_id`) REFERENCES `maza_app_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `maza_user_srv_access`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `maza_user_srv_access` WRITE;
|
|||
|
/*!40000 ALTER TABLE `maza_user_srv_access` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `maza_user_srv_access` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `misc`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `misc`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `misc` (
|
|||
|
`what` varchar(255) DEFAULT NULL,
|
|||
|
`value` mediumtext
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `misc`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `misc` WRITE;
|
|||
|
/*!40000 ALTER TABLE `misc` DISABLE KEYS */;
|
|||
|
INSERT INTO `misc` VALUES ('FS','15'),('active','1'),('confirm','0'),('obisk','0'),('active','1'),('confirm','0'),('obisk','0'),('active','1'),('confirm','0'),('name','1ka'),('keywords','web survey software, internet survey, online survey, web questionaires'),('RegSurname','0'),('description','1KA je na eni strani spletno mesto, ki podaja pregled nad tehnologijo in metodologijo spletnih anket, hkrati pa je tudi on-line platforma, kjer je mogoèe izdelovati spletne ankete.'),('m2w2all','0'),('UserDataReply','info@1ka.si'),('AfterNews','<p><font size=\"2\">Dear SFNAME,<br />\r\n<br />\r\nhere are the news from SFPAGENAME on SFINT: <br />\r\n<hr align=\"center\" width=\"100%\" />\r\n<br />\r\nSFNEWS<br />\r\n<br />\r\nSincerely,<br />\r\n<br />\r\nSFPAGENAME team<br />\r\n<br />\r\n</font><font size=\"2\" face=\"Arial\"> <hr width=\"100%\" />\r\nEmail has been sent to SFMAIL</font><br />\r\n<font size=\"2\" face=\"Arial\">To unsubscribe click SFOUT here SFEND.<br />\r\nTo change/edit your profile click SFCHANGE here SFEND.</font></p>'),('BeforeNews','xx SFINT xx SFMAIL xx<hr /><br />aaaasadadsasfff'),('underline','0'),('showsender','1'),('BeforeName','xHi,'),('m2w2all','0'),('AlertFrom','info@1ka.si'),('AlertSubject','News from SFPAGENAME'),('m2w2all','0'),('UserDataFrom','info@1ka.si'),('AlertReply','info@1ka.si'),('AlertFrom','info@1ka.si'),('AlertSubject','News from SFPAGENAME'),('AlertReply','info@1ka.si'),('UserDataReply','info@1ka.si'),('NewUserSubject',''),('ChangedUserSubject',''),('M2WNotAllowedSubject',''),('LostPasswordSubject',''),('HelloNewUser',''),('NewUserMail',''),('ChangedUserMail',''),('M2WNotAllowed',''),('LostPasswordMail',''),('PageName','1ka'),('OKNewUser',''),('OKByeUser','<p class=\"MsoNormal\" style=\"margin: 0cm 0cm 0pt;\"><font size=\"2\"><span lang=\"EN-US\" style=\"\">Dear colleague, <br />\r\n<br />\r\non SFPAGENAME site we have included some publicly available information on your bibliography related to Web survey methodology. <br />\r\n<br />\r\nRecently we received the below-enclosed inquiry from a visitor for more information about one of your specific bibliographic unit. <br />\r\n<br />\r\nWe are also highly interested to include more of your work on our site. <br />\r\n<br />\r\nSincerely, <br />\r\n<br />\r\n</span>SFPAGENAME team<br />\r\n<br />\r\n*****************************************************************************</font></p>'),('ByeEmail','<p>Spoštovani,</p><p>Uspešno ste se odjavili iz spletnega mesta www.1ka.si.</p><p>Veseli nas, da ste preizkusili orodje 1ka.</p><p>SFPAGENAME ekipa</p>'),('ByeWarning',''),('OKEdited',''),('CommonError',''),('ByeEmailSubject','Uspe¹na odjava'),('LoginError',''),('showsearch','5'),('showlogin','1'),('keywordssi','spletne ankete, spletno anketiranje, internetne ankete, sloven¹èina, slovenski jezik, software, softver, programska oprema, orodje za spletne ankete, internetno anketiranje, online vpra¹alniki'),('keywordsde',''),('author','CMI, FDV'),('abstract','1KA je orodje za spletne ankete'),('SurveyDostop','3'),('FinCurrency','SIT'),('publisher',''),('copyright','CMI, FDV'),('audience','splo¹na populacija'),('pagetopic','spletne aplikacije'),('revisit','7'),('a.hover','11'),('a.active','3'),('a.visited','4'),('a.memberhover','11'),('a.membervisited','9'),('a.memberactive','8'),('a.userhover','11'),('a.uservisited','7'),('a.useractive','5'),('a.adminhover','11'),('a.adminvisited','10'),('a.adminactive','11'),('a.adminbhover','11'),('a.adminbvisited','10'),('a.adminbactive','11'),('a.bold','0'),('a.underline',''),('a.italic','0'),('a.hoverbold',''),('a.hoverunderline','1'),('a.hoveritalic',''),('a.visitedbold',''),('a.visitedunderline',''),('a.visiteditalic',''),('a.activebold',''),('a.activeunderline','1'),('a.activeitalic',''),('a.userbold',''),('a.userunderline',''),('a.useritalic',''),('a.userhoverbold',''),('a.userhoverunderline','1'),('a.userhoveritalic',''),('a.uservisitedbold',''),('a.uservisitedunderline',''),('a.uservisiteditalic',''),('a.useractivebold',''),('a.useractiveunderline','1'),('a.useractiveitalic','
|
|||
|
/*!40000 ALTER TABLE `misc` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `oid_users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `oid_users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `oid_users` (
|
|||
|
`uid` int(11) DEFAULT NULL
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `oid_users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `oid_users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `oid_users` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `oid_users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `post`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `post`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `post` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`fid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`tid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`parent` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`naslovnica` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`vsebina` text NOT NULL,
|
|||
|
`ogledov` int(11) NOT NULL DEFAULT '0',
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`user` varchar(40) NOT NULL DEFAULT '',
|
|||
|
`time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`time2` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`admin` int(11) NOT NULL DEFAULT '3',
|
|||
|
`dispauth` int(11) NOT NULL DEFAULT '0',
|
|||
|
`dispthread` int(11) NOT NULL DEFAULT '0',
|
|||
|
`ocena` int(11) NOT NULL DEFAULT '0',
|
|||
|
`IP` varchar(128) NOT NULL DEFAULT 'Neznan',
|
|||
|
`locked` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`NiceLink` varchar(255) NOT NULL DEFAULT '',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fid_index` (`fid`),
|
|||
|
KEY `tid_index` (`tid`),
|
|||
|
KEY `admin_index` (`admin`),
|
|||
|
KEY `time2_index` (`time2`),
|
|||
|
FULLTEXT KEY `naslov` (`naslov`),
|
|||
|
FULLTEXT KEY `naslov_2` (`naslov`),
|
|||
|
FULLTEXT KEY `user_2` (`user`),
|
|||
|
FULLTEXT KEY `vsebina_2` (`vsebina`),
|
|||
|
FULLTEXT KEY `NiceLink` (`NiceLink`)
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `post`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `post` WRITE;
|
|||
|
/*!40000 ALTER TABLE `post` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `post` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `registers`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `registers`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `registers` (
|
|||
|
`ip` varchar(64) NOT NULL DEFAULT '',
|
|||
|
`lasttime` varchar(20) DEFAULT NULL,
|
|||
|
`handle` varchar(255) DEFAULT NULL,
|
|||
|
`code` varchar(80) DEFAULT NULL
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `registers`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `registers` WRITE;
|
|||
|
/*!40000 ALTER TABLE `registers` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `registers` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_activity`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_activity`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_activity` (
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`starts` date NOT NULL,
|
|||
|
`expire` date NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
UNIQUE KEY `sid` (`sid`,`starts`,`expire`,`uid`),
|
|||
|
CONSTRAINT `fk_srv_activity_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_activity`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_activity` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_activity` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_activity` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_alert`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_alert`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_alert` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`finish_respondent` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`finish_respondent_cms` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`finish_author` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`finish_other` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`finish_other_emails` mediumtext NOT NULL,
|
|||
|
`finish_subject` varchar(250) DEFAULT NULL,
|
|||
|
`finish_text` text NOT NULL,
|
|||
|
`expire_days` int(11) NOT NULL DEFAULT '3',
|
|||
|
`expire_author` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`expire_other` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`expire_other_emails` mediumtext NOT NULL,
|
|||
|
`expire_text` text NOT NULL,
|
|||
|
`expire_subject` varchar(250) NOT NULL,
|
|||
|
`delete_author` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`delete_other` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`delete_other_emails` mediumtext NOT NULL,
|
|||
|
`delete_text` text NOT NULL,
|
|||
|
`delete_subject` varchar(250) NOT NULL,
|
|||
|
`active_author` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`active_other` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`active_other_emails` mediumtext NOT NULL,
|
|||
|
`active_text0` text NOT NULL,
|
|||
|
`active_subject0` varchar(250) NOT NULL,
|
|||
|
`active_text1` text NOT NULL,
|
|||
|
`active_subject1` varchar(250) NOT NULL,
|
|||
|
`finish_respondent_if` int(11) DEFAULT NULL,
|
|||
|
`finish_respondent_cms_if` int(11) DEFAULT NULL,
|
|||
|
`finish_other_if` int(11) DEFAULT NULL,
|
|||
|
`reply_to` varchar(250) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
KEY `finish_respondent_if` (`finish_respondent_if`),
|
|||
|
KEY `finish_respondent_cms_if` (`finish_respondent_cms_if`),
|
|||
|
KEY `finish_other_if` (`finish_other_if`),
|
|||
|
CONSTRAINT `fk_srv_alert_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_alert_ibfk_1` FOREIGN KEY (`finish_respondent_if`) REFERENCES `srv_if` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_alert_ibfk_2` FOREIGN KEY (`finish_respondent_cms_if`) REFERENCES `srv_if` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_alert_ibfk_3` FOREIGN KEY (`finish_other_if`) REFERENCES `srv_if` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_alert`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_alert` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_alert` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_alert` VALUES (0,0,0,0,0,'',NULL,'',3,1,0,'','SpoÅ¡tovani,<br/><br/>obveÅ¡Äamo vas, da bo anketa "[SURVEY]" potekla čez [DAYS] dni.<br/><br/>Povezava: [URL]<br/><br/>ÄŒas aktivnosti lahko podaljÅ¡ate v nastavitvah [DURATION]<br />\n<br />\n<br />\n1KA<br />\n--------<br />\nOrodje za spletne ankete: <a href=\"http://www.1ka.si\">http://www.1ka.si</a>','1KA - obvestilo o izteku ankete',0,0,'','','',0,0,'','','','','',NULL,NULL,NULL,'');
|
|||
|
/*!40000 ALTER TABLE `srv_alert` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_alert_custom`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_alert_custom`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_alert_custom` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`type` varchar(20) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`subject` varchar(250) NOT NULL,
|
|||
|
`text` text NOT NULL,
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`type`,`uid`),
|
|||
|
CONSTRAINT `srv_alert_custom_ibfk_1` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_alert_custom`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_alert_custom` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_alert_custom` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_alert_custom` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_analysis_archive`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_analysis_archive`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_analysis_archive` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`sid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`filename` varchar(50) NOT NULL,
|
|||
|
`date` datetime NOT NULL,
|
|||
|
`note` varchar(200) NOT NULL,
|
|||
|
`access` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`access_password` varchar(30) DEFAULT NULL,
|
|||
|
`type` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`duration` date NOT NULL,
|
|||
|
`editid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`settings` mediumtext,
|
|||
|
PRIMARY KEY (`id`,`sid`),
|
|||
|
KEY `fk_srv_analysis_archive_sid` (`sid`),
|
|||
|
CONSTRAINT `fk_srv_analysis_archive_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_analysis_archive`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_analysis_archive` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_analysis_archive` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_analysis_archive` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_anketa`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_anketa`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_anketa` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`folder` int(11) NOT NULL DEFAULT '1',
|
|||
|
`backup` int(11) NOT NULL,
|
|||
|
`naslov` varchar(40) NOT NULL,
|
|||
|
`akronim` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`active` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`locked` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`db_table` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`starts` date NOT NULL,
|
|||
|
`expire` date NOT NULL,
|
|||
|
`introduction` text NOT NULL,
|
|||
|
`conclusion` text NOT NULL,
|
|||
|
`statistics` text NOT NULL,
|
|||
|
`intro_opomba` varchar(250) NOT NULL,
|
|||
|
`concl_opomba` varchar(250) NOT NULL,
|
|||
|
`show_intro` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`intro_static` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`show_concl` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`concl_link` int(11) NOT NULL DEFAULT '0',
|
|||
|
`concl_back_button` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`concl_end_button` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`text` varchar(250) NOT NULL,
|
|||
|
`url` varchar(250) NOT NULL,
|
|||
|
`insert_uid` int(11) NOT NULL,
|
|||
|
`insert_time` datetime NOT NULL,
|
|||
|
`edit_uid` int(11) NOT NULL,
|
|||
|
`edit_time` datetime NOT NULL,
|
|||
|
`cookie` tinyint(4) NOT NULL DEFAULT '2',
|
|||
|
`cookie_return` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`return_finished` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`cookie_continue` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`user_from_cms` int(11) NOT NULL DEFAULT '0',
|
|||
|
`user_from_cms_email` int(11) NOT NULL DEFAULT '0',
|
|||
|
`user_base` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`usercode_skip` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`usercode_required` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`usercode_text` varchar(255) NOT NULL,
|
|||
|
`block_ip` int(11) NOT NULL DEFAULT '0',
|
|||
|
`dostop` int(11) NOT NULL DEFAULT '3',
|
|||
|
`dostop_admin` date NOT NULL,
|
|||
|
`odgovarja` tinyint(4) NOT NULL DEFAULT '4',
|
|||
|
`skin` varchar(100) NOT NULL DEFAULT 'Default',
|
|||
|
`mobile_skin` varchar(100) NOT NULL DEFAULT 'Mobile',
|
|||
|
`skin_profile` int(11) NOT NULL,
|
|||
|
`skin_profile_mobile` int(11) NOT NULL,
|
|||
|
`skin_checkbox` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`branching` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`alert_respondent` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`alert_avtor` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`alert_admin` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`alert_more` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`uporabnost_link` varchar(400) NOT NULL,
|
|||
|
`progressbar` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`sidebar` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`collapsed_content` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`library` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`countType` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`survey_type` tinyint(4) NOT NULL DEFAULT '2',
|
|||
|
`forum` int(11) NOT NULL DEFAULT '0',
|
|||
|
`thread` int(11) NOT NULL,
|
|||
|
`thread_intro` int(11) NOT NULL DEFAULT '0',
|
|||
|
`thread_concl` int(11) NOT NULL DEFAULT '0',
|
|||
|
`intro_note` text NOT NULL,
|
|||
|
`concl_note` text NOT NULL,
|
|||
|
`vote_limit` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`vote_count` int(11) NOT NULL DEFAULT '0',
|
|||
|
`lang_admin` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`lang_resp` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`multilang` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`expanded` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`flat` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`toolbox` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`popup` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`missing_values_type` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`mass_insert` enum('0','1') NOT NULL,
|
|||
|
`monitoring` enum('0','1') NOT NULL,
|
|||
|
`show_email` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`old_email_style` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`vprasanje_tracking` enum('0','1','2','3') CHARACTER SET utf8 NOT NULL DEFAULT '0',
|
|||
|
`parapodatki` enum('0','1') NOT NULL,
|
|||
|
`individual_invitation` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`email_to_list` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`invisible` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`continue_later` enum('1','0') NOT NULL DEFAULT '0',
|
|||
|
`js_tracking` text NOT NULL,
|
|||
|
`concl_PDF_link` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`concl_return_edit` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`defValidProfile` tinyint(4) NOT NULL DEFAULT '2',
|
|||
|
`showItime` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`showLineNumber` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`mobile_created` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_anketa_folder` (`folder`),
|
|||
|
KEY `active` (`active`),
|
|||
|
CONSTRAINT `fk_srv_anketa_folder` FOREIGN KEY (`folder`) REFERENCES `srv_folder` (`id`) ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_anketa`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_anketa` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_anketa` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_anketa` VALUES (-1,1,0,'system','',0,0,0,'0000-00-00','0000-00-00','','','','','',1,0,1,0,1,1,'','',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',2,0,1,1,0,0,0,1,0,'',0,3,'0000-00-00',4,'Modern','Mobile',0,0,0,1,0,0,0,0,'',1,1,1,0,0,2,0,0,0,0,'','',0,0,1,1,0,1,1,1,1,0,'0','0','0','1','0','0','1','0','0','1','',0,'0',2,0,0,'0'),(0,1,0,'system','',0,0,0,'0000-00-00','0000-00-00','','','','','',1,0,1,0,1,1,'','',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',2,0,1,1,0,0,0,1,0,'',0,3,'0000-00-00',4,'Modern','Mobile',0,0,0,0,0,0,0,0,'',1,1,1,0,0,2,0,0,0,0,'','',0,0,1,1,0,1,1,1,1,0,'0','0','0','1','0','0','1','0','0','1','',0,'0',2,0,0,'0');
|
|||
|
/*!40000 ALTER TABLE `srv_anketa` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
|
|||
|
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
|
|||
|
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
|
|||
|
/*!50003 SET character_set_client = utf8mb4 */ ;
|
|||
|
/*!50003 SET character_set_results = utf8mb4 */ ;
|
|||
|
/*!50003 SET collation_connection = utf8mb4_general_ci */ ;
|
|||
|
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
|
|||
|
/*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ;
|
|||
|
DELIMITER ;;
|
|||
|
/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `srv_anketa_zero` BEFORE DELETE ON `srv_anketa` FOR EACH ROW BEGIN
|
|||
|
DECLARE dummy INTEGER;
|
|||
|
IF OLD.id <= 0 THEN
|
|||
|
SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_anketa;
|
|||
|
END IF;
|
|||
|
END */;;
|
|||
|
DELIMITER ;
|
|||
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
|||
|
/*!50003 SET character_set_client = @saved_cs_client */ ;
|
|||
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|||
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_anketa_module`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_anketa_module`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_anketa_module` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`modul` varchar(100) NOT NULL DEFAULT '',
|
|||
|
`vrednost` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
PRIMARY KEY (`ank_id`,`modul`),
|
|||
|
CONSTRAINT `fk_srv_anketa_module_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_anketa_module`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_anketa_module` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_anketa_module` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_anketa_module` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_anketa_template`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_anketa_template`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_anketa_template` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`kategorija` tinyint(1) DEFAULT '0',
|
|||
|
`ank_id_slo` int(11) NOT NULL,
|
|||
|
`naslov_slo` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`desc_slo` text NOT NULL,
|
|||
|
`ank_id_eng` int(11) NOT NULL,
|
|||
|
`naslov_eng` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`desc_eng` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_anketa_template`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_anketa_template` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_anketa_template` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_anketa_template` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_api_auth`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_api_auth`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_api_auth` (
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`identifier` text NOT NULL,
|
|||
|
`private_key` text NOT NULL,
|
|||
|
PRIMARY KEY (`usr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_api_auth`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_api_auth` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_api_auth` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_api_auth` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_branching`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_branching`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_branching` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`parent` int(11) NOT NULL,
|
|||
|
`element_spr` int(11) NOT NULL,
|
|||
|
`element_if` int(11) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
`pagebreak` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`ank_id`,`parent`,`element_spr`,`element_if`),
|
|||
|
KEY `element_spr` (`element_spr`),
|
|||
|
KEY `element_spr_if` (`element_spr`,`element_if`),
|
|||
|
KEY `parent` (`parent`),
|
|||
|
KEY `element_if` (`element_if`),
|
|||
|
CONSTRAINT `fk_srv_branching_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_branching`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_branching` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_branching` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_branching` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_calculation`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_calculation`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_calculation` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`cnd_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`operator` smallint(6) NOT NULL,
|
|||
|
`number` int(11) NOT NULL DEFAULT '0',
|
|||
|
`left_bracket` smallint(6) NOT NULL,
|
|||
|
`right_bracket` smallint(6) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `cnd_id` (`cnd_id`),
|
|||
|
KEY `spr_id` (`spr_id`,`vre_id`),
|
|||
|
KEY `fk_srv_calculation_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_calculation_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_calculation_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_calculation`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_calculation` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_calculation` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_calculation` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_call_current`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_call_current`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_call_current` (
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`user_id` int(10) unsigned NOT NULL,
|
|||
|
`started_time` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`usr_id`),
|
|||
|
KEY `user_id` (`user_id`),
|
|||
|
KEY `started_time` (`started_time`),
|
|||
|
CONSTRAINT `fk_srv_call_current_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_call_current`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_call_current` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_call_current` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_call_current` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_call_history`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_call_history`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_call_history` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`survey_id` int(11) NOT NULL,
|
|||
|
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`insert_time` datetime NOT NULL,
|
|||
|
`status` enum('A','Z','N','R','T','P','U') NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `phone_id` (`usr_id`),
|
|||
|
KEY `time` (`insert_time`),
|
|||
|
KEY `status` (`status`),
|
|||
|
KEY `survey_id` (`survey_id`),
|
|||
|
KEY `user_id` (`user_id`),
|
|||
|
CONSTRAINT `fk_srv_call_history_survey_id` FOREIGN KEY (`survey_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_call_history_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_call_history`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_call_history` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_call_history` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_call_history` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_call_schedule`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_call_schedule`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_call_schedule` (
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`call_time` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_call_schedule_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_call_schedule`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_call_schedule` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_call_schedule` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_call_schedule` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_call_setting`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_call_setting`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_call_setting` (
|
|||
|
`survey_id` int(11) NOT NULL,
|
|||
|
`status_z` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`status_n` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`max_calls` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`survey_id`),
|
|||
|
CONSTRAINT `fk_srv_call_setting_survey_id` FOREIGN KEY (`survey_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_call_setting`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_call_setting` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_call_setting` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_call_setting` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_captcha`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_captcha`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_captcha` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`text` char(5) NOT NULL,
|
|||
|
`code` char(40) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`spr_id`,`usr_id`),
|
|||
|
KEY `srv_captcha_usr_id` (`usr_id`),
|
|||
|
KEY `srv_captcha_spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `srv_captcha_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_captcha_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_captcha_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_captcha`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_captcha` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_captcha` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_captcha` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_chart_skin`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_chart_skin`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_chart_skin` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`colors` varchar(200) NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_chart_skin`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_chart_skin` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_chart_skin` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_chart_skin` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_chat_settings`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_chat_settings`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_chat_settings` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`code` text NOT NULL,
|
|||
|
`chat_type` enum('0','1','2') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
CONSTRAINT `fk_srv_chat_settings_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_chat_settings`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_chat_settings` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_chat_settings` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_chat_settings` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_comment_resp`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_comment_resp`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_comment_resp` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`comment_time` datetime NOT NULL,
|
|||
|
`comment` text NOT NULL,
|
|||
|
`ocena` enum('0','1','2','3') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_comment_resp`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_comment_resp` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_comment_resp` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_comment_resp` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_condition`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_condition`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_condition` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`conjunction` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`negation` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`operator` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`modul` smallint(6) NOT NULL DEFAULT '2',
|
|||
|
`ostanek` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`left_bracket` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`right_bracket` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `if_id` (`if_id`),
|
|||
|
KEY `spr_id` (`spr_id`,`vre_id`),
|
|||
|
KEY `fk_srv_condition_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_condition_if_id` FOREIGN KEY (`if_id`) REFERENCES `srv_if` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_condition_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_condition_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_condition`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_condition` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_condition` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_condition` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_condition_grid`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_condition_grid`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_condition_grid` (
|
|||
|
`cond_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`cond_id`,`grd_id`),
|
|||
|
CONSTRAINT `fk_srv_condition_grid_cond_id` FOREIGN KEY (`cond_id`) REFERENCES `srv_condition` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_condition_grid`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_condition_grid` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_condition_grid` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_condition_grid` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_condition_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_condition_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_condition_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`name` varchar(250) NOT NULL,
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`condition_label` text NOT NULL,
|
|||
|
`condition_error` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`type` enum('default','inspect','zoom') NOT NULL DEFAULT 'default',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `sid` (`sid`,`uid`,`if_id`),
|
|||
|
KEY `if_id` (`if_id`),
|
|||
|
CONSTRAINT `srv_condition_profiles_ibfk_1` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_condition_profiles_ibfk_2` FOREIGN KEY (`if_id`) REFERENCES `srv_if` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_condition_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_condition_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_condition_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_condition_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_condition_vre`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_condition_vre`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_condition_vre` (
|
|||
|
`cond_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`cond_id`,`vre_id`),
|
|||
|
KEY `fk_srv_condition_vre_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_condition_vre_cond_id` FOREIGN KEY (`cond_id`) REFERENCES `srv_condition` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_condition_vre_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_condition_vre`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_condition_vre` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_condition_vre` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_condition_vre` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_custom_report`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_custom_report`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_custom_report` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`spr1` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`spr2` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`sub_type` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`vrstni_red` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`profile` int(11) NOT NULL DEFAULT '0',
|
|||
|
`time_edit` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_custom_report`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_custom_report` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_custom_report` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_custom_report` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_custom_report_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_custom_report_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_custom_report_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`time_created` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_custom_report_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_custom_report_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_custom_report_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_custom_report_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_custom_report_share`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_custom_report_share`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_custom_report_share` (
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`profile_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`author_usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`share_usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`,`profile_id`,`author_usr_id`,`share_usr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_custom_report_share`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_custom_report_share` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_custom_report_share` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_custom_report_share` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_checkgrid`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_checkgrid`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_checkgrid` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`grd_id`,`loop_id`),
|
|||
|
KEY `fk_srv_data_checkgrid_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_checkgrid_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_checkgrid_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_checkgrid_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_checkgrid_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_checkgrid_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_checkgrid_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_checkgrid`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_checkgrid` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_checkgrid` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_checkgrid` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_checkgrid_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_checkgrid_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_checkgrid_active` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`grd_id`,`loop_id`),
|
|||
|
KEY `fk_srv_data_checkgrid_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_checkgrid_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_checkgrid_loop_id` (`loop_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_checkgrid_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_checkgrid_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_checkgrid_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_checkgrid_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_files`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_files`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_files` (
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`head_file_time` datetime NOT NULL,
|
|||
|
`data_file_time` datetime NOT NULL,
|
|||
|
`collect_all_status` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`collect_full_meta` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`last_update` datetime NOT NULL,
|
|||
|
`dashboard_file_time` int(11) unsigned NOT NULL,
|
|||
|
`dashboard_update_time` datetime NOT NULL,
|
|||
|
`updateInProgress` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`updateStartTime` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`sid`),
|
|||
|
UNIQUE KEY `sid` (`sid`),
|
|||
|
CONSTRAINT `fk_srv_data_files_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_files`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_files` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_files` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_files` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_glasovanje`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_glasovanje`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_glasovanje` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`spol` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`spr_id`,`usr_id`),
|
|||
|
KEY `fk_srv_data_glasovanje_usr_id` (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_data_glasovanje_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_glasovanje_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_glasovanje`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_glasovanje` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_glasovanje` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_glasovanje` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_grid`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_grid`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_grid` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `vre_id` (`vre_id`,`usr_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_grid_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_grid_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_grid_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_grid_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_grid`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_grid` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_grid` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_grid` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_grid_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_grid_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_grid_active` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `vre_id` (`vre_id`,`usr_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_grid_active_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_grid_active_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_grid_active_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_grid_active_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_grid_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_grid_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_grid_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_grid_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_heatmap`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_heatmap`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_heatmap` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
`vre_id` int(11) DEFAULT NULL,
|
|||
|
`lat` float(19,15) NOT NULL,
|
|||
|
`lng` float(19,15) NOT NULL,
|
|||
|
`address` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin,
|
|||
|
`vrstni_red` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `loop_id` (`loop_id`),
|
|||
|
KEY `ank_id` (`ank_id`),
|
|||
|
KEY `spr_id` (`spr_id`),
|
|||
|
KEY `vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_data_heatmap_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_heatmap_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_heatmap_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_heatmap_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_heatmap`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_heatmap` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_heatmap` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_heatmap` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_imena`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_imena`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_imena` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`antonucci` int(1) NOT NULL DEFAULT '0',
|
|||
|
`emotion` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`social` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`emotionINT` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`socialINT` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`countE` int(11) NOT NULL DEFAULT '0',
|
|||
|
`countS` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_data_imena_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_imena_spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `fk_srv_data_imena_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_imena_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_imena`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_imena` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_imena` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_imena` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_map`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_map`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_map` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
`vre_id` int(11) DEFAULT NULL,
|
|||
|
`lat` float(19,15) NOT NULL,
|
|||
|
`lng` float(19,15) NOT NULL,
|
|||
|
`address` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin,
|
|||
|
`vrstni_red` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `loop_id` (`loop_id`),
|
|||
|
KEY `ank_id` (`ank_id`),
|
|||
|
KEY `spr_id` (`spr_id`),
|
|||
|
KEY `vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_data_map_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_map_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_map_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_map_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_map`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_map` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_map` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_map` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_number`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_number`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_number` (
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`text2` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `fk_srv_data_number_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_number_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_number_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_number_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_number_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_number_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_number_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_number`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_number` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_number` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_number` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_rating`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_rating`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_rating` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `fk_srv_data_rating_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_rating_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_rating_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_rating_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_rating_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_rating`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_rating` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_rating` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_rating` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_text`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_text`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_text` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`text2` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`usr_id` int(11) DEFAULT '0',
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_text_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_text_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_text_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_text_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_text_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_text`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_text` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_text` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_text` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_text_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_text_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_text_active` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`text2` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`usr_id` int(11) DEFAULT '0',
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_text_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_text_loop_id` (`loop_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_text_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_text_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_text_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_text_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_textgrid`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_textgrid`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_textgrid` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`grd_id`,`loop_id`),
|
|||
|
KEY `fk_srv_data_textgrid_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_textgrid_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_textgrid_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_textgrid_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_textgrid_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_textgrid_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_textgrid_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_textgrid`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_textgrid` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_textgrid` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_textgrid` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_textgrid_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_textgrid_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_textgrid_active` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`text` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`grd_id`,`loop_id`),
|
|||
|
KEY `fk_srv_data_textgrid_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_textgrid_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_textgrid_loop_id` (`loop_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_textgrid_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_textgrid_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_textgrid_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_textgrid_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_upload`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_upload`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_upload` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`code` char(13) NOT NULL,
|
|||
|
`filename` varchar(50) NOT NULL,
|
|||
|
KEY `srv_data_upload_ank_id` (`ank_id`),
|
|||
|
KEY `srv_data_upload_usr_id` (`usr_id`),
|
|||
|
CONSTRAINT `srv_data_upload_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_data_upload_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_upload`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_upload` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_upload` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_upload` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_vrednost` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id_2` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `spr_id` (`spr_id`,`usr_id`),
|
|||
|
KEY `vre_usr` (`vre_id`,`usr_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_vrednost_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_vrednost` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_vrednost_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_vrednost_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_vrednost_active` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `spr_id_2` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `spr_id` (`spr_id`,`usr_id`),
|
|||
|
KEY `vre_usr` (`vre_id`,`usr_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_vrednost_active_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_active_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_active_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_active_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_active_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_vrednost_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_vrednost_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_vrednost_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_vrednost_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_data_vrednost_cond`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_data_vrednost_cond`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_data_vrednost_cond` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`text` text COLLATE utf8_bin NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`loop_id` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `spr_id` (`spr_id`,`vre_id`,`usr_id`,`loop_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_data_vrednost_cond_id` (`vre_id`),
|
|||
|
KEY `fk_srv_data_vrednost_cond_loop_id` (`loop_id`),
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_cond_loop_id` FOREIGN KEY (`loop_id`) REFERENCES `srv_loop_data` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_cond_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_data_vrednost_cond_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_data_vrednost_cond`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_data_vrednost_cond` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_data_vrednost_cond` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_data_vrednost_cond` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_datasetting_profile`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_datasetting_profile`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_datasetting_profile` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`dsp_ndp` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`dsp_nda` tinyint(4) NOT NULL DEFAULT '2',
|
|||
|
`dsp_ndd` tinyint(4) NOT NULL DEFAULT '2',
|
|||
|
`dsp_res` tinyint(4) NOT NULL DEFAULT '3',
|
|||
|
`dsp_sep` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`crossChk0` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`crossChk1` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`crossChk2` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`crossChk3` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`crossChkEC` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`crossChkRE` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`crossChkSR` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`crossChkAR` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`doColor` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`dovalues` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`showCategories` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`showOther` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`showNumbers` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`showText` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`chartNumbering` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`chartFP` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`chartTableAlign` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`chartTableMore` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`chartNumerusText` enum('0','1','2','3') NOT NULL DEFAULT '0',
|
|||
|
`chartAvgText` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`chartFontSize` tinyint(4) NOT NULL DEFAULT '8',
|
|||
|
`chartPieZeros` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`hideEmpty` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`numOpenAnswers` int(11) NOT NULL DEFAULT '10',
|
|||
|
`dataPdfType` enum('0','1','2') NOT NULL DEFAULT '0',
|
|||
|
`exportDataNumbering` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`exportDataShowIf` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`exportDataFontSize` tinyint(4) NOT NULL DEFAULT '10',
|
|||
|
`exportDataShowRecnum` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`exportDataPB` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`exportDataSkipEmpty` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`exportDataSkipEmptySub` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`exportDataLandscape` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`exportNumbering` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`exportShowIf` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`exportFontSize` tinyint(4) NOT NULL DEFAULT '10',
|
|||
|
`exportShowIntro` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`enableInspect` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`dataShowIcons` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`analysisGoTo` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`analiza_legenda` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`hideAllSystem` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`,`uid`),
|
|||
|
UNIQUE KEY `id` (`id`,`uid`,`name`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_datasetting_profile`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_datasetting_profile` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_datasetting_profile` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_datasetting_profile` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_dostop`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_dostop`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_dostop` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`aktiven` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`alert_complete` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`alert_expire` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`alert_delete` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`alert_active` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`alert_complete_if` int(11) DEFAULT NULL,
|
|||
|
`dostop` set('edit','test','publish','data','analyse','export','link','mail','dashboard','phone','mail_server','lock') NOT NULL DEFAULT 'edit,test,publish,data,analyse,export,dashboard',
|
|||
|
PRIMARY KEY (`ank_id`,`uid`),
|
|||
|
KEY `alert_complete_if` (`alert_complete_if`),
|
|||
|
CONSTRAINT `fk_srv_dostop_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_dostop_ibfk_1` FOREIGN KEY (`alert_complete_if`) REFERENCES `srv_if` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_dostop`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_dostop` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_dostop` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_dostop` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_dostop_language`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_dostop_language`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_dostop_language` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`lang_id` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`uid`,`lang_id`),
|
|||
|
KEY `fk_srv_dostop_language_ank_id_lang_id` (`ank_id`,`lang_id`),
|
|||
|
CONSTRAINT `fk_srv_dostop_language_ank_id_lang_id` FOREIGN KEY (`ank_id`, `lang_id`) REFERENCES `srv_language` (`ank_id`, `lang_id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_dostop_language_ank_id_uid` FOREIGN KEY (`ank_id`, `uid`) REFERENCES `srv_dostop` (`ank_id`, `uid`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_dostop_language`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_dostop_language` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_dostop_language` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_dostop_language` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_dostop_manage`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_dostop_manage`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_dostop_manage` (
|
|||
|
`manager` int(11) NOT NULL,
|
|||
|
`user` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`manager`,`user`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_dostop_manage`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_dostop_manage` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_dostop_manage` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_dostop_manage` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_evoli_landingpage_access`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_evoli_landingpage_access`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_evoli_landingpage_access` (
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`email` varchar(100) NOT NULL DEFAULT '',
|
|||
|
`pass` varchar(100) NOT NULL DEFAULT '',
|
|||
|
`time_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`used` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`,`email`,`pass`),
|
|||
|
CONSTRAINT `fk_srv_evoli_landingPage_access_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_evoli_landingpage_access`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_evoli_landingpage_access` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_landingpage_access` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_landingpage_access` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_evoli_teammeter`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_evoli_teammeter`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_evoli_teammeter` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`skupina_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`email` varchar(100) DEFAULT '',
|
|||
|
`lang_id` int(11) NOT NULL DEFAULT '1',
|
|||
|
`url` varchar(255) DEFAULT '',
|
|||
|
`kvota_max` int(11) NOT NULL DEFAULT '0',
|
|||
|
`kvota_val` int(11) NOT NULL DEFAULT '0',
|
|||
|
`date_from` date NOT NULL DEFAULT '0000-00-00',
|
|||
|
`date_to` date NOT NULL DEFAULT '0000-00-00',
|
|||
|
`datum_posiljanja` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_evoli_teammeter_ank_id` (`ank_id`),
|
|||
|
KEY `fk_srv_evoli_teammeter_skupina_id` (`skupina_id`),
|
|||
|
CONSTRAINT `fk_srv_evoli_teammeter_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_evoli_teammeter_skupina_id` FOREIGN KEY (`skupina_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_evoli_teammeter`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_evoli_teammeter` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_teammeter` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_teammeter` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_evoli_teammeter_data_department`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_evoli_teammeter_data_department`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_evoli_teammeter_data_department` (
|
|||
|
`department_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`department_id`,`usr_id`),
|
|||
|
KEY `fk_srv_evoli_data_department_usr_id` (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_evoli_data_department_department_id` FOREIGN KEY (`department_id`) REFERENCES `srv_evoli_teammeter_department` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_evoli_data_department_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_evoli_teammeter_data_department`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_evoli_teammeter_data_department` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_teammeter_data_department` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_teammeter_data_department` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_evoli_teammeter_department`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_evoli_teammeter_department`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_evoli_teammeter_department` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`tm_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`department` varchar(255) DEFAULT '',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_evoli_teammeter_department_tm_id` (`tm_id`),
|
|||
|
CONSTRAINT `fk_srv_evoli_teammeter_department_tm_id` FOREIGN KEY (`tm_id`) REFERENCES `srv_evoli_teammeter` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_evoli_teammeter_department`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_evoli_teammeter_department` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_teammeter_department` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_evoli_teammeter_department` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_fieldwork`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_fieldwork`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_fieldwork` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`terminal_id` varchar(255) DEFAULT NULL,
|
|||
|
`sid_terminal` int(10) unsigned DEFAULT NULL,
|
|||
|
`sid_server` int(10) unsigned DEFAULT NULL,
|
|||
|
`secret` varchar(500) DEFAULT NULL,
|
|||
|
`lastnum` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_fieldwork`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_fieldwork` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_fieldwork` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_fieldwork` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_folder`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_folder`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_folder` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`naslov` varchar(50) NOT NULL,
|
|||
|
`parent` int(11) NOT NULL,
|
|||
|
`creator_uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `parent` (`parent`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_folder`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_folder` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_folder` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_folder` VALUES (1,'Moje 1KA ankete',0,0);
|
|||
|
/*!40000 ALTER TABLE `srv_folder` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_gdpr_anketa`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_gdpr_anketa`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_gdpr_anketa` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`1ka_template` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`name` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`email` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`location` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`phone` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`web` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`other` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`about` text NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
CONSTRAINT `fk_srv_gdpr_anketa_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_gdpr_anketa`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_gdpr_anketa` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_gdpr_anketa` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_gdpr_anketa` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_gdpr_requests`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_gdpr_requests`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_gdpr_requests` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`url` varchar(200) NOT NULL DEFAULT '',
|
|||
|
`email` varchar(100) NOT NULL DEFAULT '',
|
|||
|
`datum` datetime NOT NULL,
|
|||
|
`ip` varchar(100) NOT NULL DEFAULT '',
|
|||
|
`recnum` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`text` text NOT NULL,
|
|||
|
`status` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`comment` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_gdpr_requests_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_gdpr_requests_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `fk_srv_gdpr_requests_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_gdpr_requests_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_gdpr_requests`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_gdpr_requests` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_gdpr_requests` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_gdpr_requests` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_gdpr_user`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_gdpr_user`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_gdpr_user` (
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`type` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`organization` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`dpo_phone` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`dpo_email` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`dpo_lastname` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`dpo_firstname` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`firstname` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`lastname` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`email` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`phone` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`address` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`country` varchar(255) NOT NULL DEFAULT '',
|
|||
|
PRIMARY KEY (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_gdpr_user_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_gdpr_user`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_gdpr_user` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_gdpr_user` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_gdpr_user` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_glasovanje`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_glasovanje`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_glasovanje` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`show_results` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`show_percent` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`show_graph` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`spol` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`stat_count` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`stat_time` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`embed` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`show_title` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`stat_archive` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`skin` varchar(100) NOT NULL DEFAULT 'Classic',
|
|||
|
PRIMARY KEY (`ank_id`,`spr_id`),
|
|||
|
KEY `fk_srv_glasovanje_spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `fk_srv_glasovanje_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_glasovanje_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_glasovanje`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_glasovanje` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_glasovanje` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_glasovanje` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_grid`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_grid`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_grid` (
|
|||
|
`id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`naslov` varchar(250) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
`variable` varchar(15) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`other` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`part` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`naslov_graf` varchar(255) NOT NULL DEFAULT '',
|
|||
|
PRIMARY KEY (`id`,`spr_id`),
|
|||
|
KEY `spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `fk_srv_grid_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_grid`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_grid` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_grid` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_grid` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_grid_multiple`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_grid_multiple`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_grid_multiple` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`parent` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vrstni_red` smallint(6) NOT NULL,
|
|||
|
KEY `srv_grid_multiple_ank_id` (`ank_id`),
|
|||
|
KEY `srv_grid_multiple_parent` (`parent`),
|
|||
|
KEY `srv_grid_multiple_spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `srv_grid_multiple_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_grid_multiple_parent` FOREIGN KEY (`parent`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_grid_multiple_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_grid_multiple`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_grid_multiple` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_grid_multiple` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_grid_multiple` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_grupa`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_grupa`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_grupa` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `ank_id` (`ank_id`),
|
|||
|
KEY `ank_id_2` (`ank_id`,`vrstni_red`),
|
|||
|
CONSTRAINT `fk_srv_grupa_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_grupa`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_grupa` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_grupa` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_grupa` VALUES (-2,0,'system',0,'2018-03-05 09:50:10'),(-1,0,'system',0,'2018-03-05 09:50:10'),(0,0,'system',0,'2018-03-05 09:50:10');
|
|||
|
/*!40000 ALTER TABLE `srv_grupa` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
|
|||
|
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
|
|||
|
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
|
|||
|
/*!50003 SET character_set_client = utf8mb4 */ ;
|
|||
|
/*!50003 SET character_set_results = utf8mb4 */ ;
|
|||
|
/*!50003 SET collation_connection = utf8mb4_general_ci */ ;
|
|||
|
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
|
|||
|
/*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ;
|
|||
|
DELIMITER ;;
|
|||
|
/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `srv_grupa_zero` BEFORE DELETE ON `srv_grupa` FOR EACH ROW BEGIN
|
|||
|
DECLARE dummy INTEGER;
|
|||
|
IF OLD.id <= 0 THEN
|
|||
|
SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_grupa;
|
|||
|
END IF;
|
|||
|
END */;;
|
|||
|
DELIMITER ;
|
|||
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
|||
|
/*!50003 SET character_set_client = @saved_cs_client */ ;
|
|||
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|||
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hash_url`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hash_url`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hash_url` (
|
|||
|
`hash` varchar(32) NOT NULL,
|
|||
|
`anketa` int(11) NOT NULL DEFAULT '0',
|
|||
|
`properties` text NOT NULL,
|
|||
|
`comment` varchar(256) NOT NULL,
|
|||
|
`access_password` varchar(30) DEFAULT NULL,
|
|||
|
`refresh` int(2) NOT NULL DEFAULT '0',
|
|||
|
`page` enum('data','analysis') DEFAULT 'data',
|
|||
|
`add_date` datetime DEFAULT NULL,
|
|||
|
`add_uid` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`hash`),
|
|||
|
UNIQUE KEY `hash` (`hash`,`anketa`),
|
|||
|
KEY `FK_srv_hash_url` (`anketa`),
|
|||
|
CONSTRAINT `FK_srv_hash_url` FOREIGN KEY (`anketa`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hash_url`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hash_url` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hash_url` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hash_url` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_help`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_help`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_help` (
|
|||
|
`what` varchar(50) NOT NULL,
|
|||
|
`lang` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`help` text NOT NULL,
|
|||
|
PRIMARY KEY (`what`,`lang`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_help`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_help` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_help` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_help` VALUES ('DataPiping',1,'ÄŒe respondent pri vpraÅ¡anju npr. Q1 (npr. Katero je vaÅ¡e najljubÅ¡e sadje) odgovori npr. »jabolka«, lahko to vkljuÄimo v vpraÅ¡anje Q2, npr. »Kako pogosto kupujete #Q1# na tržnici?\n\nPri tem je treba upoÅ¡tevati:\n\n * VpraÅ¡anje Q2, ki vkljuÄi odgovor, mora biti na naslednji strani,\n * Ime spremenljivke, ki se prenaÅ¡a (Q1) je treba spremeniti, ker je lahko predmet avtomatskega preÅ¡tevilÄenja, npr. spremenimo »Q1« v »SADJE«'),('displaychart_settings',1,'Če želite urediti manjkajoče vrednosti ali za grafe prilagoditi text vprašanja, potem to spremenite v naprednih nastavitvah.'),('displaydata_checkboxes',1,'<ul style=\"padding-left:15px\"> <li>Kadar je izbrana opcija \"<b>Podatki</b>\", se v tabeli prikazujejo podatki respondentov.</li> <li>\"<b>status</b>\"<dl><dt> 6-končal anketo,</dt><dt> 5-delno izpolnjena,</dt><dt> 4-klik na anketo,</dt><dt> 3-klik na nagovor,</dt><dt> 2-epošta-napaka,</dt><dt> 1-epošta-neodgovor,</dt><dt> 0-epošta-ni poslana),</dt><dt> lurker - prazna anketa (1 = da, 0 = ne),</dt><dt> Zaporedna številka vnosa</dt></dl></li> <li>Kadar je izbrana opcija \"<b>Meta podatki</b>\" prikazujemo meta podatke uporabnika: datum vnosa, datum popravljanja, čase po straneh, IP, JavaScript, podatke brskalnika</li> <li>Kadar je izbrana opcija \"<b>Sistemski podatki</b>\" prikazujemo sistemske podatke respondenta: ime, priimek, email....</li> </ul>'),('displaydata_data',1,'Kadar je opcija izbrana, se v tabeli prikažejo podatki respondentov'),('displaydata_meta',1,'Priakže meta podatke uporabnika: datum vnosa, datum popravljanja, čase po straneh, IP, JavaScript, podatke brskalnika'),('displaydata_pdftype',1,'Dolg izpis pomeni izpis oblike kakršne je vprašalnik, krajši izpis pa izpiše vprašalnik z rezultati v skrajšani obliki.'),('displaydata_status',1,'status (6-končal anketo, 5-delno izpolnjena, 4-klik na anketo, 3-klik na nagovor, 2-epošta-napaka, 1-epošta-neodgovor, 0-epošta-ni poslana),<br>lurker - prazna anketa (1 = da, 0 = ne),<br>Zaporedna številka vnosa'),('displaydata_system',1,'Prikaže sistemske podatke respondenta: ime, priimek, email....'),('dodaj_searchbox',1,'V zemljevid vključi tudi iskalno okno, preko katerega lahko respondent tudi opisno poišče lokacijo na zemljevidu'),('edit_date_range',1,'Datum lahko navzdol omejimo z letnico, naprimer: 1951 ali kot obdobje -70, kar pomeni zadnjih 70 let. Podobno lahko omejimo datum tudi navzgor. Naprimer: 2013 ali kot obdobje +10, kar pomeni naslednjih 10 let'),('edit_variable',1,'Urejanje variable'),('exportSettings',1,'Kadar izberete \"Izvozi samo identifikatorje\" se bodo izvozili samo identifikatorji (sistemski podatki repondenta), brez katerikoli drugih podatkov.<br>Kadar pa ne izvažate identifikatorjev pa lahko izvozite posamezne para podatke respondenta.'),('fieldwork_devices',1,'blablabla'),('fieldwork_devices',2,'blablabla'),('individual_invitation',1,'Individualiziran URL'),('inv_recipiens_from_system',1,'Prejemniki bodo dodani iz obstojeÄih podatkov v bazi, pri Äemer mora vpraÅ¡alnik vsebovati sistemsko spremenljivko email'),('marker_podvprasanje',1,'V oblaček markerja dodaj podvprašanje'),('naslov_podvprasanja_map',1,'Besedilo podvprašanja v oblačku markerja'),('spremenljivka_reminder',1,'V primeru, da respondent ni odgovoril na predvideno vpraÅ¡anje, imamo tri možnosti:\n<UL>\n<LI><b>Brez opozorila </b> pomeni, da respondenti lahko, tudi Äe ne odgovorijo na doloÄeno vpraÅ¡anje, brez opozorila nadaljujejo z anketo. \n\n<LI><b>Trdo opozorilo </b> pomeni, da respondenti, Äe ne odgovorijo na vpraÅ¡anje s trdim opozorilom, dobijo obvestilo, da ne morejo nadaljevati z reÅ¡evanjem ankete.\n\n<LI><b>Mehko opozorilo </b> pomeni, da respondenti, Äe ne odgovorijo,
|
|||
|
/*!40000 ALTER TABLE `srv_help` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_dostop`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_dostop`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_dostop` (
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`dostop` tinyint(4) DEFAULT '0',
|
|||
|
`ustanova` varchar(255) DEFAULT NULL,
|
|||
|
`aai_email` varchar(100) DEFAULT NULL,
|
|||
|
`created_at` datetime DEFAULT CURRENT_TIMESTAMP,
|
|||
|
`updated_at` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`user_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_dostop`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_dostop` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_dostop` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_dostop` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_koda`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_koda`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_koda` (
|
|||
|
`koda` varchar(10) NOT NULL,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`url` text NOT NULL,
|
|||
|
`vloga` enum('ucitelj','ucenec') NOT NULL,
|
|||
|
`srv_user_id` int(11) DEFAULT NULL,
|
|||
|
`user_id` int(15) NOT NULL,
|
|||
|
`hierarhija_struktura_id` int(15) NOT NULL,
|
|||
|
`datetime` datetime DEFAULT NULL,
|
|||
|
PRIMARY KEY (`koda`),
|
|||
|
UNIQUE KEY `koda` (`koda`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
KEY `hierarhija_struktura_id` (`hierarhija_struktura_id`),
|
|||
|
KEY `srv_user_id` (`srv_user_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_koda_ibfk_1` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_koda_ibfk_2` FOREIGN KEY (`hierarhija_struktura_id`) REFERENCES `srv_hierarhija_struktura` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_koda_ibfk_3` FOREIGN KEY (`srv_user_id`) REFERENCES `srv_user` (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_koda`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_koda` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_koda` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_koda` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_options`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_options`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_options` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`option_name` varchar(200) NOT NULL,
|
|||
|
`option_value` longtext,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_options_ibfk_1` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_options`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_options` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_options` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_options` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_ravni`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_ravni`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_ravni` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`level` tinyint(4) DEFAULT NULL,
|
|||
|
`ime` varchar(255) DEFAULT NULL,
|
|||
|
`unikaten` int(11) DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_ravni_ibfk_1` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_ravni`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_ravni` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_ravni` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_ravni` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_shrani`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_shrani`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_shrani` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`ime` varchar(255) DEFAULT NULL,
|
|||
|
`hierarhija` longtext,
|
|||
|
`struktura` longtext,
|
|||
|
`st_uciteljev` int(11) DEFAULT NULL,
|
|||
|
`st_vseh_uporabnikov` int(11) DEFAULT NULL,
|
|||
|
`komentar` text,
|
|||
|
`logo` varchar(255) DEFAULT NULL,
|
|||
|
`uporabniki_list` text,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_shrani_ibfk_1` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_shrani`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_shrani` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_shrani` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_shrani` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_sifrant_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_sifrant_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_sifrant_vrednost` (
|
|||
|
`sifrant_id` int(11) NOT NULL,
|
|||
|
`vrednost_id` int(11) NOT NULL,
|
|||
|
KEY `sifrant_id` (`sifrant_id`),
|
|||
|
KEY `vrednost_id` (`vrednost_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_sifrant_vrednost_ibfk_1` FOREIGN KEY (`sifrant_id`) REFERENCES `srv_hierarhija_sifranti` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_sifrant_vrednost_ibfk_2` FOREIGN KEY (`vrednost_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_sifrant_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_sifrant_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_sifrant_vrednost` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_sifrant_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_sifranti`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_sifranti`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_sifranti` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`hierarhija_ravni_id` int(11) NOT NULL,
|
|||
|
`ime` varchar(255) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `hierarhija_ravni_id` (`hierarhija_ravni_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_sifranti_ibfk_1` FOREIGN KEY (`hierarhija_ravni_id`) REFERENCES `srv_hierarhija_ravni` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_sifranti`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_sifranti` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_sifranti` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_sifranti` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_struktura`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_struktura`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_struktura` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`hierarhija_ravni_id` int(11) NOT NULL,
|
|||
|
`parent_id` int(11) DEFAULT NULL,
|
|||
|
`hierarhija_sifranti_id` int(11) NOT NULL,
|
|||
|
`level` tinyint(4) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `hierarhija_ravni_id` (`hierarhija_ravni_id`),
|
|||
|
KEY `parent_id` (`parent_id`),
|
|||
|
KEY `hierarhija_sifranti_id` (`hierarhija_sifranti_id`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_struktura_ibfk_1` FOREIGN KEY (`hierarhija_ravni_id`) REFERENCES `srv_hierarhija_ravni` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_struktura_ibfk_2` FOREIGN KEY (`parent_id`) REFERENCES `srv_hierarhija_struktura` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_struktura_ibfk_3` FOREIGN KEY (`hierarhija_sifranti_id`) REFERENCES `srv_hierarhija_sifranti` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_struktura_ibfk_4` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_struktura`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_struktura` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_struktura` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_struktura` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_struktura_users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_struktura_users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_struktura_users` (
|
|||
|
`hierarhija_struktura_id` int(11) NOT NULL,
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
KEY `hierarhija_struktura_id` (`hierarhija_struktura_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_struktura_users_ibfk_1` FOREIGN KEY (`hierarhija_struktura_id`) REFERENCES `srv_hierarhija_struktura` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_struktura_users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_struktura_users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_struktura_users` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_struktura_users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_supersifra`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_supersifra`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_supersifra` (
|
|||
|
`koda` varchar(10) NOT NULL,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`kode` text NOT NULL,
|
|||
|
`datetime` datetime DEFAULT NULL,
|
|||
|
PRIMARY KEY (`koda`),
|
|||
|
UNIQUE KEY `koda` (`koda`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_supersifra_ibfk_1` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_supersifra`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_supersifra` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_supersifra` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_supersifra` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_supersifra_resevanje`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_supersifra_resevanje`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_supersifra_resevanje` (
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`supersifra` varchar(10) NOT NULL,
|
|||
|
`koda` varchar(10) NOT NULL,
|
|||
|
`status` tinyint(4) DEFAULT NULL,
|
|||
|
`datetime` datetime DEFAULT CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`user_id`),
|
|||
|
KEY `supersifra` (`supersifra`),
|
|||
|
KEY `koda` (`koda`),
|
|||
|
CONSTRAINT `srv_hierarhija_supersifra_resevanje_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_supersifra_resevanje_ibfk_2` FOREIGN KEY (`supersifra`) REFERENCES `srv_hierarhija_supersifra` (`koda`) ON DELETE CASCADE,
|
|||
|
CONSTRAINT `srv_hierarhija_supersifra_resevanje_ibfk_3` FOREIGN KEY (`koda`) REFERENCES `srv_hierarhija_koda` (`koda`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_supersifra_resevanje`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_supersifra_resevanje` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_supersifra_resevanje` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_supersifra_resevanje` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hierarhija_users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hierarhija_users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hierarhija_users` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`anketa_id` int(11) NOT NULL,
|
|||
|
`type` tinyint(4) DEFAULT '10',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `anketa_id` (`anketa_id`),
|
|||
|
CONSTRAINT `srv_hierarhija_users_ibfk_1` FOREIGN KEY (`anketa_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hierarhija_users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hierarhija_users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_users` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hierarhija_users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_hotspot_regions`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_hotspot_regions`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_hotspot_regions` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`region_name` text NOT NULL,
|
|||
|
`region_coords` text NOT NULL,
|
|||
|
`region_index` int(11) NOT NULL,
|
|||
|
`variable` varchar(15) NOT NULL DEFAULT '',
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_hotspot_regions_spr_id` (`spr_id`),
|
|||
|
KEY `fk_srv_hotspot_regions_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_hotspot_regions_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_hotspot_regions_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_hotspot_regions`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_hotspot_regions` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_hotspot_regions` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_hotspot_regions` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_if`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_if`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_if` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`number` int(11) NOT NULL DEFAULT '0',
|
|||
|
`tip` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`label` varchar(200) NOT NULL,
|
|||
|
`collapsed` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`folder` int(11) NOT NULL DEFAULT '0',
|
|||
|
`enabled` enum('0','1','2') NOT NULL,
|
|||
|
`tab` enum('0','1') NOT NULL,
|
|||
|
`horizontal` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`random` int(11) NOT NULL DEFAULT '-1',
|
|||
|
`thread` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `folder` (`folder`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_if`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_if` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_if` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_if` VALUES (0,0,0,'system',0,0,'0','0','0',-1,0);
|
|||
|
/*!40000 ALTER TABLE `srv_if` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
|
|||
|
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
|
|||
|
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
|
|||
|
/*!50003 SET character_set_client = utf8mb4 */ ;
|
|||
|
/*!50003 SET character_set_results = utf8mb4 */ ;
|
|||
|
/*!50003 SET collation_connection = utf8mb4_general_ci */ ;
|
|||
|
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
|
|||
|
/*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ;
|
|||
|
DELIMITER ;;
|
|||
|
/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `srv_if_zero` BEFORE DELETE ON `srv_if` FOR EACH ROW BEGIN
|
|||
|
DECLARE dummy INTEGER;
|
|||
|
IF OLD.id <= 0 THEN
|
|||
|
SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_if;
|
|||
|
END IF;
|
|||
|
END */;;
|
|||
|
DELIMITER ;
|
|||
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
|||
|
/*!50003 SET character_set_client = @saved_cs_client */ ;
|
|||
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|||
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_archive`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_archive`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_archive` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`date_send` datetime DEFAULT NULL,
|
|||
|
`subject_text` varchar(100) NOT NULL,
|
|||
|
`body_text` mediumtext,
|
|||
|
`tip` tinyint(4) NOT NULL DEFAULT '-1',
|
|||
|
`cnt_succsess` int(11) NOT NULL,
|
|||
|
`cnt_error` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`comment` char(100) NOT NULL,
|
|||
|
`naslov` char(100) NOT NULL,
|
|||
|
`rec_in_db` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `srv_invitations_archive_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `srv_invitations_archive_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_archive`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_archive` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_archive` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_archive` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_archive_recipients`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_archive_recipients`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_archive_recipients` (
|
|||
|
`arch_id` int(11) NOT NULL,
|
|||
|
`rec_id` int(11) NOT NULL,
|
|||
|
`success` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
KEY `srv_invitations_archive_recipients_arch_id` (`arch_id`),
|
|||
|
KEY `srv_invitations_archive_recipients_rec_id` (`rec_id`),
|
|||
|
CONSTRAINT `srv_invitations_archive_recipients_arch_id` FOREIGN KEY (`arch_id`) REFERENCES `srv_invitations_archive` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_invitations_archive_recipients_rec_id` FOREIGN KEY (`rec_id`) REFERENCES `srv_invitations_recipients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_archive_recipients`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_archive_recipients` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_archive_recipients` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_archive_recipients` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_mapping`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_mapping`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_mapping` (
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`field` varchar(45) NOT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_mapping`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_mapping` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_mapping` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_mapping` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_messages`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_messages`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_messages` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`naslov` varchar(100) NOT NULL,
|
|||
|
`subject_text` varchar(100) NOT NULL,
|
|||
|
`body_text` mediumtext,
|
|||
|
`reply_to` varchar(100) NOT NULL,
|
|||
|
`isdefault` enum('0','1') DEFAULT '0',
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`insert_time` datetime NOT NULL,
|
|||
|
`comment` char(100) NOT NULL,
|
|||
|
`edit_uid` int(11) NOT NULL,
|
|||
|
`edit_time` datetime NOT NULL,
|
|||
|
`url` varchar(200) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `srv_invitations_messages_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `srv_invitations_messages_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_messages`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_messages` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_messages` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_messages` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_recipients`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_recipients`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_recipients` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`email` varchar(100) DEFAULT NULL,
|
|||
|
`firstname` varchar(45) DEFAULT NULL,
|
|||
|
`lastname` varchar(45) DEFAULT NULL,
|
|||
|
`password` varchar(45) DEFAULT NULL,
|
|||
|
`cookie` char(32) NOT NULL,
|
|||
|
`salutation` varchar(45) DEFAULT NULL,
|
|||
|
`phone` varchar(45) DEFAULT NULL,
|
|||
|
`custom` varchar(100) DEFAULT NULL,
|
|||
|
`relation` int(11) DEFAULT NULL,
|
|||
|
`sent` enum('0','1') DEFAULT '1',
|
|||
|
`responded` enum('0','1') DEFAULT '1',
|
|||
|
`unsubscribed` enum('0','1') DEFAULT '1',
|
|||
|
`deleted` enum('0','1') DEFAULT '0',
|
|||
|
`date_inserted` datetime NOT NULL,
|
|||
|
`date_sent` datetime NOT NULL,
|
|||
|
`date_expired` datetime NOT NULL,
|
|||
|
`date_responded` datetime NOT NULL,
|
|||
|
`date_unsubscribed` datetime NOT NULL,
|
|||
|
`date_deleted` datetime NOT NULL,
|
|||
|
`uid_deleted` int(11) NOT NULL,
|
|||
|
`last_status` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`inserted_uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`list_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `ank_id_unique` (`ank_id`,`email`,`firstname`,`lastname`,`salutation`,`phone`,`custom`),
|
|||
|
CONSTRAINT `srv_invitations_recipients_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_recipients`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_recipients` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_recipients` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_recipients` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_recipients_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_recipients_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_recipients_profiles` (
|
|||
|
`pid` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`name` varchar(100) DEFAULT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`fields` varchar(100) DEFAULT NULL,
|
|||
|
`respondents` text NOT NULL,
|
|||
|
`insert_time` datetime NOT NULL,
|
|||
|
`comment` char(100) NOT NULL,
|
|||
|
`from_survey` int(11) NOT NULL,
|
|||
|
`edit_uid` int(11) NOT NULL,
|
|||
|
`edit_time` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`pid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_recipients_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_recipients_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_recipients_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_recipients_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_recipients_profiles_access`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_recipients_profiles_access`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_recipients_profiles_access` (
|
|||
|
`pid` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_recipients_profiles_access`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_recipients_profiles_access` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_recipients_profiles_access` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_recipients_profiles_access` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_invitations_tracking`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_invitations_tracking`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_invitations_tracking` (
|
|||
|
`inv_arch_id` int(11) NOT NULL,
|
|||
|
`time_insert` datetime DEFAULT NULL,
|
|||
|
`res_id` int(11) NOT NULL,
|
|||
|
`status` int(11) NOT NULL,
|
|||
|
`uniq` mediumint(9) NOT NULL AUTO_INCREMENT,
|
|||
|
PRIMARY KEY (`uniq`),
|
|||
|
UNIQUE KEY `arc_res_status` (`inv_arch_id`,`res_id`,`status`),
|
|||
|
KEY `srv_invitations_tracking_res_id` (`res_id`),
|
|||
|
CONSTRAINT `srv_invitations_tracking_arch_id` FOREIGN KEY (`inv_arch_id`) REFERENCES `srv_invitations_archive` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_invitations_tracking_res_id` FOREIGN KEY (`res_id`) REFERENCES `srv_invitations_recipients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_invitations_tracking`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_invitations_tracking` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_tracking` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_invitations_tracking` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_language`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_language`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_language` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`lang_id` int(11) NOT NULL,
|
|||
|
`language` varchar(255) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`lang_id`),
|
|||
|
CONSTRAINT `fk_srv_language_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_language`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_language` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_language` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_language` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_language_grid`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_language_grid`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_language_grid` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`lang_id` int(11) NOT NULL,
|
|||
|
`naslov` text NOT NULL,
|
|||
|
PRIMARY KEY (`spr_id`,`grd_id`,`lang_id`),
|
|||
|
KEY `fk_srv_language_grid_ank_id_lang_id` (`ank_id`,`lang_id`),
|
|||
|
CONSTRAINT `fk_srv_language_grid_ank_id_lang_id` FOREIGN KEY (`ank_id`, `lang_id`) REFERENCES `srv_language` (`ank_id`, `lang_id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_language_grid_spr_id_grd_id` FOREIGN KEY (`spr_id`, `grd_id`) REFERENCES `srv_grid` (`spr_id`, `id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_language_grid`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_language_grid` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_language_grid` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_language_grid` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_language_spremenljivka`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_language_spremenljivka`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_language_spremenljivka` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`lang_id` int(11) NOT NULL,
|
|||
|
`naslov` text NOT NULL,
|
|||
|
`info` text NOT NULL,
|
|||
|
`vsota` varchar(255) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`spr_id`,`lang_id`),
|
|||
|
KEY `fk_srv_language_spremenljivka_spr_id` (`spr_id`),
|
|||
|
KEY `fk_srv_language_spremenljivka_ank_id_lang_id` (`ank_id`,`lang_id`),
|
|||
|
CONSTRAINT `fk_srv_language_spremenljivka_ank_id_lang_id` FOREIGN KEY (`ank_id`, `lang_id`) REFERENCES `srv_language` (`ank_id`, `lang_id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_language_spremenljivka_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_language_spremenljivka`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_language_spremenljivka` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_language_spremenljivka` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_language_spremenljivka` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_language_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_language_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_language_vrednost` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`lang_id` int(11) NOT NULL,
|
|||
|
`naslov` text NOT NULL,
|
|||
|
`naslov2` text NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`vre_id`,`lang_id`),
|
|||
|
KEY `fk_srv_language_vrednost_ank_id_lang_id` (`ank_id`,`lang_id`),
|
|||
|
KEY `fk_srv_language_vrednost_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_language_vrednost_ank_id_lang_id` FOREIGN KEY (`ank_id`, `lang_id`) REFERENCES `srv_language` (`ank_id`, `lang_id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_language_vrednost_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_language_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_language_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_language_vrednost` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_language_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_library_anketa`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_library_anketa`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_library_anketa` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`folder` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`uid`),
|
|||
|
CONSTRAINT `fk_srv_library_anketa_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_library_anketa`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_library_anketa` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_library_anketa` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_library_anketa` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_library_folder`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_library_folder`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_library_folder` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`tip` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`naslov` varchar(50) NOT NULL,
|
|||
|
`parent` int(11) NOT NULL,
|
|||
|
`lang` int(11) NOT NULL DEFAULT '1',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `parent` (`parent`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_library_folder`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_library_folder` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_library_folder` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_library_folder` VALUES (1,0,0,'Sistemske',0,1),(2,0,1,'Public surveys',0,2),(3,0,0,'Public questions',0,2);
|
|||
|
/*!40000 ALTER TABLE `srv_library_folder` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_lock`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_lock`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_lock` (
|
|||
|
`lock_key` varchar(32) NOT NULL,
|
|||
|
`locked` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`last_lock_date` datetime NOT NULL,
|
|||
|
`last_unlock_date` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`lock_key`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_lock`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_lock` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_lock` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_lock` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_log_collect_data`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_log_collect_data`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_log_collect_data` (
|
|||
|
`date` datetime NOT NULL,
|
|||
|
`automatic` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`has_error` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`log` mediumtext NOT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_log_collect_data`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_log_collect_data` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_log_collect_data` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_log_collect_data` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_loop`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_loop`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_loop` (
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`max` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`if_id`),
|
|||
|
KEY `fk_srv_loop_spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `fk_srv_loop_if_id` FOREIGN KEY (`if_id`) REFERENCES `srv_if` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_loop_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_loop`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_loop` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_loop` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_loop` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_loop_data`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_loop_data`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_loop_data` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `if_id` (`if_id`,`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_loop_data_if_id_vre_id` FOREIGN KEY (`if_id`, `vre_id`) REFERENCES `srv_loop_vre` (`if_id`, `vre_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_loop_data`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_loop_data` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_loop_data` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_loop_data` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_loop_vre`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_loop_vre`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_loop_vre` (
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) DEFAULT NULL,
|
|||
|
`tip` tinyint(4) NOT NULL,
|
|||
|
UNIQUE KEY `if_id` (`if_id`,`vre_id`),
|
|||
|
KEY `fk_srv_loop_vre_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_loop_vre_if_id` FOREIGN KEY (`if_id`) REFERENCES `srv_loop` (`if_id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_loop_vre_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_loop_vre`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_loop_vre` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_loop_vre` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_loop_vre` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_mc_element`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_mc_element`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_mc_element` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`table_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`spr` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`parent` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
`position` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `table_id` (`table_id`),
|
|||
|
CONSTRAINT `srv_mc_element_ibfk_1` FOREIGN KEY (`table_id`) REFERENCES `srv_mc_table` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_mc_element`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_mc_element` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_mc_element` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_mc_element` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_mc_table`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_mc_table`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_mc_table` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(255) NOT NULL,
|
|||
|
`time_created` datetime NOT NULL,
|
|||
|
`title` text NOT NULL,
|
|||
|
`numerus` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`percent` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`sums` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`navVsEno` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`avgVar` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`delezVar` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`delez` varchar(255) NOT NULL DEFAULT '',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_mc_table`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_mc_table` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_mc_table` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_mc_table` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_misc`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_misc`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_misc` (
|
|||
|
`what` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`value` longtext,
|
|||
|
UNIQUE KEY `what` (`what`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_misc`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_misc` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_misc` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_misc` VALUES ('export_data_font_size','10'),('export_data_numbering','0'),('export_data_PB','1'),('export_data_show_if','0'),('export_data_show_recnum','0'),('export_data_skip_empty','1'),('export_data_skip_empty_sub','1'),('export_font_size','10'),('export_numbering','1'),('export_show_if','1'),('export_show_intro','1'),('mobile_friendly','1'),('mobile_tables','1'),('question_comment_text','Vaš komentar k vprašanju'),('timing_kategorija_1','5'),('timing_kategorija_16','10'),('timing_kategorija_17','5'),('timing_kategorija_18','5'),('timing_kategorija_19','20'),('timing_kategorija_2','5'),('timing_kategorija_20','20'),('timing_kategorija_3','5'),('timing_kategorija_6','10'),('timing_stran','5'),('timing_vprasanje_1','10'),('timing_vprasanje_16','10'),('timing_vprasanje_17','10'),('timing_vprasanje_18','10'),('timing_vprasanje_19','10'),('timing_vprasanje_2','10'),('timing_vprasanje_20','10'),('timing_vprasanje_21','20'),('timing_vprasanje_3','10'),('timing_vprasanje_4','20'),('timing_vprasanje_5','10'),('timing_vprasanje_6','10'),('timing_vprasanje_7','10'),('timing_vprasanje_8','10');
|
|||
|
/*!40000 ALTER TABLE `srv_misc` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_missing_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_missing_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_missing_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`system` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`display_mv_type` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`merge_missing` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`show_zerro` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `uid` (`uid`,`name`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_missing_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_missing_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_missing_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_missing_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_missing_profiles_values`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_missing_profiles_values`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_missing_profiles_values` (
|
|||
|
`missing_pid` int(11) NOT NULL,
|
|||
|
`missing_value` int(11) NOT NULL,
|
|||
|
`type` int(2) NOT NULL,
|
|||
|
PRIMARY KEY (`missing_pid`,`missing_value`,`type`),
|
|||
|
UNIQUE KEY `pid` (`missing_pid`,`missing_value`,`type`),
|
|||
|
CONSTRAINT `fk_srv_missing_profiles_id` FOREIGN KEY (`missing_pid`) REFERENCES `srv_missing_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_missing_profiles_values`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_missing_profiles_values` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_missing_profiles_values` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_missing_profiles_values` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_missing_values`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_missing_values`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_missing_values` (
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '3',
|
|||
|
`value` varchar(10) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '-99',
|
|||
|
`text` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'Ne vem',
|
|||
|
`active` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`systemValue` int(11) DEFAULT NULL,
|
|||
|
UNIQUE KEY `sid` (`sid`,`type`,`value`),
|
|||
|
CONSTRAINT `fk_srv_missing_values_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_missing_values`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_missing_values` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_missing_values` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_missing_values` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_module`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_module`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_module` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`module_name` text NOT NULL,
|
|||
|
`active` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_module`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_module` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_module` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_module` VALUES (1,'hierarhija','0'),(2,'evalvacija','0'),(3,'360','0'),(4,'evoli','0'),(5,'gfksurvey','0'),(6,'mfdps','0'),(7,'360_1ka','0'),(8,'mju','0'),(9,'evoli_teammeter','0'),(10,'maza','0'),(11,'excell_matrix','0'),(12,'gorenje','0'),(13,'borza','0');
|
|||
|
/*!40000 ALTER TABLE `srv_module` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_mysurvey_anketa`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_mysurvey_anketa`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_mysurvey_anketa` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`folder` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`,`usr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_mysurvey_anketa`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_mysurvey_anketa` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_mysurvey_anketa` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_mysurvey_anketa` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_mysurvey_folder`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_mysurvey_folder`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_mysurvey_folder` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`parent` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`open` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_mysurvey_folder`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_mysurvey_folder` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_mysurvey_folder` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_mysurvey_folder` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_nice_links`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_nice_links`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_nice_links` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`link` varbinary(50) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `link` (`link`),
|
|||
|
KEY `srv_nice_links_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `srv_nice_links_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_nice_links`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_nice_links` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_nice_links` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_nice_links` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_nice_links_skupine`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_nice_links_skupine`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_nice_links_skupine` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`nice_link_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`link` varbinary(30) NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_nice_links_skupine`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_nice_links_skupine` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_nice_links_skupine` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_nice_links_skupine` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_notifications`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_notifications`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_notifications` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`message_id` int(11) NOT NULL,
|
|||
|
`recipient` int(11) NOT NULL DEFAULT '0',
|
|||
|
`viewed` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_notifications`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_notifications` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_notifications` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_notifications` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_notifications_messages`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_notifications_messages`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_notifications_messages` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`author` int(11) NOT NULL DEFAULT '0',
|
|||
|
`date` date NOT NULL DEFAULT '0000-00-00',
|
|||
|
`title` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`text` mediumtext NOT NULL,
|
|||
|
`force_show` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_notifications_messages`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_notifications_messages` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_notifications_messages` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_notifications_messages` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_panel_if`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_panel_if`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_panel_if` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`value` varchar(100) NOT NULL DEFAULT '',
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`if_id`),
|
|||
|
KEY `fk_srv_panel_if_if_id` (`if_id`),
|
|||
|
CONSTRAINT `fk_srv_panel_if_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_panel_if_if_id` FOREIGN KEY (`if_id`) REFERENCES `srv_if` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_panel_if`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_panel_if` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_panel_if` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_panel_if` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_panel_settings`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_panel_settings`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_panel_settings` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`user_id_name` varchar(100) NOT NULL DEFAULT 'SID',
|
|||
|
`status_name` varchar(100) NOT NULL DEFAULT 'status',
|
|||
|
`status_default` varchar(20) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
CONSTRAINT `fk_srv_panel_settings_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_panel_settings`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_panel_settings` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_panel_settings` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_panel_settings` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_parapodatki`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_parapodatki`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_parapodatki` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
`what` varchar(150) NOT NULL,
|
|||
|
`what2` varchar(150) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`gru_id` varchar(50) NOT NULL,
|
|||
|
`spr_id` varchar(50) NOT NULL,
|
|||
|
`item` text NOT NULL,
|
|||
|
`spr_id_variable` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_parapodatki_ank_id` (`ank_id`),
|
|||
|
KEY `fk_srv_parapodatki_usr_id` (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_parapodatki_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_parapodatki_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_parapodatki`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_parapodatki` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_parapodatki` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_parapodatki` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_password`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_password`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_password` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`password` varchar(20) NOT NULL,
|
|||
|
KEY `srv_password_ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `srv_password_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_password`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_password` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_password` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_password` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_profilemanager`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_profilemanager`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_profilemanager` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` text NOT NULL,
|
|||
|
`comment` text NOT NULL,
|
|||
|
`ssp` int(11) DEFAULT NULL,
|
|||
|
`svp` int(11) DEFAULT NULL,
|
|||
|
`scp` int(11) DEFAULT NULL,
|
|||
|
`stp` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_profilemanager`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_profilemanager` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_profilemanager` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_profilemanager` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_quiz_settings`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_quiz_settings`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_quiz_settings` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`results` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`results_chart` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
CONSTRAINT `fk_srv_quiz_settings_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_quiz_settings`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_quiz_settings` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_quiz_settings` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_quiz_settings` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_quiz_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_quiz_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_quiz_vrednost` (
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`spr_id`,`vre_id`),
|
|||
|
KEY `fk_srv_quiz_vrednost_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_quiz_vrednost_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_quiz_vrednost_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_quiz_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_quiz_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_quiz_vrednost` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_quiz_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_quota`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_quota`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_quota` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`cnd_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`grd_id` int(11) NOT NULL,
|
|||
|
`operator` smallint(6) NOT NULL,
|
|||
|
`value` int(11) NOT NULL DEFAULT '0',
|
|||
|
`left_bracket` smallint(6) NOT NULL,
|
|||
|
`right_bracket` smallint(6) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `cnd_id` (`cnd_id`),
|
|||
|
KEY `spr_id` (`spr_id`,`vre_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_quota`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_quota` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_quota` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_quota` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_recode`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_recode`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_recode` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
`search` varchar(15) COLLATE utf8_bin NOT NULL,
|
|||
|
`value` varchar(15) COLLATE utf8_bin NOT NULL,
|
|||
|
`operator` enum('0','1','2','3','4','5','6') COLLATE utf8_bin DEFAULT '0',
|
|||
|
`enabled` enum('0','1') COLLATE utf8_bin NOT NULL DEFAULT '1',
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`spr_id`,`search`,`operator`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_recode`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_recode` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_recode` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_recode` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_recode_number`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_recode_number`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_recode_number` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`vrstni_red` int(11) NOT NULL,
|
|||
|
`search` varchar(15) COLLATE utf8_bin NOT NULL,
|
|||
|
`operator` enum('0','1','2','3','4','5','6') COLLATE utf8_bin DEFAULT '0',
|
|||
|
`vred_id` int(11) NOT NULL,
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`spr_id`,`search`,`operator`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_recode_number`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_recode_number` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_recode_number` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_recode_number` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_recode_spremenljivka`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_recode_spremenljivka`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_recode_spremenljivka` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`recode_type` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`to_spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`enabled` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`rec_date` datetime NOT NULL,
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`spr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_recode_spremenljivka`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_recode_spremenljivka` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_recode_spremenljivka` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_recode_spremenljivka` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_recode_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_recode_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_recode_vrednost` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr1` int(11) NOT NULL,
|
|||
|
`vre1` int(11) NOT NULL,
|
|||
|
`spr2` int(11) NOT NULL,
|
|||
|
`vre2` int(11) NOT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_recode_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_recode_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_recode_vrednost` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_recode_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_respondent_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_respondent_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_respondent_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`name` varchar(100) NOT NULL,
|
|||
|
`variables` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `uid` (`uid`,`name`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_respondent_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_respondent_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_respondent_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_respondent_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_respondents`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_respondents`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_respondents` (
|
|||
|
`pid` int(11) NOT NULL,
|
|||
|
`line` text NOT NULL,
|
|||
|
KEY `fk_srv_respondents_pid` (`pid`),
|
|||
|
CONSTRAINT `fk_srv_respondents_pid` FOREIGN KEY (`pid`) REFERENCES `srv_respondent_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_respondents`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_respondents` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_respondents` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_respondents` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_simple_mail_invitation`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_simple_mail_invitation`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_simple_mail_invitation` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`email` varchar(250) NOT NULL,
|
|||
|
`send_time` datetime NOT NULL,
|
|||
|
`state` enum('ok','error','quota_exceeded') DEFAULT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_simple_mail_invitation`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_simple_mail_invitation` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_simple_mail_invitation` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_simple_mail_invitation` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_slideshow_settings`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_slideshow_settings`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_slideshow_settings` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`fixed_interval` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`timer` mediumint(9) NOT NULL DEFAULT '5',
|
|||
|
`save_entries` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`autostart` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`next_btn` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`back_btn` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`pause_btn` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`),
|
|||
|
CONSTRAINT `srv_slideshow_settings_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_slideshow_settings`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_slideshow_settings` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_slideshow_settings` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_slideshow_settings` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_specialdata_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_specialdata_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_specialdata_vrednost` (
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vre_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`spr_id`,`usr_id`),
|
|||
|
KEY `fk_srv_specialdata_vrednost_usr_id` (`usr_id`),
|
|||
|
KEY `fk_srv_specialdata_vrednost_vre_id` (`vre_id`),
|
|||
|
CONSTRAINT `fk_srv_specialdata_vrednost_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_specialdata_vrednost_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_specialdata_vrednost_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_specialdata_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_specialdata_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_specialdata_vrednost` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_specialdata_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_spremenljivka`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_spremenljivka`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_spremenljivka` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`gru_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`info` text NOT NULL,
|
|||
|
`variable` varchar(15) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`variable_custom` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`label` varchar(50) NOT NULL,
|
|||
|
`tip` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
`random` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`size` tinyint(4) NOT NULL DEFAULT '5',
|
|||
|
`undecided` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`rejected` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`inappropriate` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`stat` int(11) NOT NULL DEFAULT '0',
|
|||
|
`orientation` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`checkboxhide` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`reminder` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`alert_show_99` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`alert_show_98` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`alert_show_97` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`visible` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`locked` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`textfield` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`textfield_label` varchar(250) NOT NULL,
|
|||
|
`cela` tinyint(4) NOT NULL DEFAULT '4',
|
|||
|
`decimalna` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`enota` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`timer` mediumint(9) NOT NULL DEFAULT '0',
|
|||
|
`sistem` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`folder` int(11) NOT NULL DEFAULT '1',
|
|||
|
`params` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`antonucci` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`design` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`podpora` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`grids` tinyint(4) NOT NULL DEFAULT '5',
|
|||
|
`grids_edit` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`grid_subtitle1` text NOT NULL,
|
|||
|
`grid_subtitle2` text NOT NULL,
|
|||
|
`ranking_k` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`vsota` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`vsota_limit` int(11) NOT NULL DEFAULT '0',
|
|||
|
`vsota_min` int(11) NOT NULL DEFAULT '0',
|
|||
|
`skala` tinyint(4) NOT NULL DEFAULT '-1',
|
|||
|
`vsota_reminder` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`vsota_limittype` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`vsota_show` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`num_useMax` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`num_useMin` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`num_min2` int(11) NOT NULL DEFAULT '0',
|
|||
|
`num_max2` int(11) NOT NULL DEFAULT '0',
|
|||
|
`num_useMax2` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`num_useMin2` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`thread` int(11) NOT NULL DEFAULT '0',
|
|||
|
`text_kosov` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`text_orientation` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`note` text NOT NULL,
|
|||
|
`upload` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`signature` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`dostop` tinyint(4) NOT NULL DEFAULT '4',
|
|||
|
`inline_edit` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`onchange_submit` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`hidden_default` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`naslov_graf` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`edit_graf` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`wide_graf` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`coding` int(11) NOT NULL DEFAULT '0',
|
|||
|
`dynamic_mg` enum('0','1','2','3','4','5','6') NOT NULL DEFAULT '0',
|
|||
|
`showOnAllPages` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`skupine` enum('0','1','2','3') NOT NULL DEFAULT '0',
|
|||
|
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `gru_id` (`gru_id`),
|
|||
|
KEY `gru_id_2` (`gru_id`,`vrstni_red`),
|
|||
|
CONSTRAINT `fk_srv_spremenljivka_gru_id` FOREIGN KEY (`gru_id`) REFERENCES `srv_grupa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=9709 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_spremenljivka`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_spremenljivka` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_spremenljivka` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_spremenljivka` VALUES (-4,0,'system','','',0,'',0,0,0,5,0,0,0,0,1,0,0,'0','0','0',1,'0',0,'',4,0,0,0,0,1,'',0,0,0,5,0,'','',0,'',0,0,-1,0,0,1,'0','0',0,0,'0','0',0,1,0,'',0,0,4,0,0,0,'',0,1,0,'0','0','0','2018-03-05 09:50:11'),(-3,0,'system','','',0,'',0,0,0,5,0,0,0,0,1,0,0,'0','0','0',1,'0',0,'',4,0,0,0,0,1,'',0,0,0,5,0,'','',0,'',0,0,-1,0,0,1,'0','0',0,0,'0','0',0,1,0,'',0,0,4,0,0,0,'',0,1,0,'0','0','0','2018-03-05 09:50:11'),(-2,0,'system','','',0,'',0,1,0,5,0,0,0,0,1,0,0,'0','0','0',1,'0',0,'',4,0,0,0,0,1,'',0,0,0,5,0,'','',0,'',0,0,-1,0,0,1,'0','0',0,0,'0','0',0,1,0,'',0,0,4,0,0,0,'system',0,0,0,'0','0','0','2018-03-05 09:50:11'),(-1,0,'system','','',0,'',0,2,0,5,0,0,0,0,1,0,0,'0','0','0',1,'0',0,'',4,0,0,0,0,1,'',0,0,0,5,0,'','',0,'',0,0,-1,0,0,1,'0','0',0,0,'0','0',0,1,0,'',0,0,4,0,0,0,'system',0,0,0,'0','0','0','2018-03-05 09:50:11'),(0,0,'system','','',0,'',0,3,0,5,0,0,0,0,1,0,0,'0','0','0',1,'0',0,'',4,0,0,0,0,1,'',0,0,0,5,0,'','',0,'',0,0,-1,0,0,1,'0','0',0,0,'0','0',0,1,0,'',0,0,4,0,0,0,'system',0,0,0,'0','0','0','2018-03-05 09:50:11');
|
|||
|
/*!40000 ALTER TABLE `srv_spremenljivka` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
|
|||
|
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
|
|||
|
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
|
|||
|
/*!50003 SET character_set_client = utf8mb4 */ ;
|
|||
|
/*!50003 SET character_set_results = utf8mb4 */ ;
|
|||
|
/*!50003 SET collation_connection = utf8mb4_general_ci */ ;
|
|||
|
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
|
|||
|
/*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ;
|
|||
|
DELIMITER ;;
|
|||
|
/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `srv_spremenljivka_zero` BEFORE DELETE ON `srv_spremenljivka` FOR EACH ROW BEGIN
|
|||
|
DECLARE dummy INTEGER;
|
|||
|
IF OLD.id <= 0 THEN
|
|||
|
SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_spremenljivka;
|
|||
|
END IF;
|
|||
|
END */;;
|
|||
|
DELIMITER ;
|
|||
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
|||
|
/*!50003 SET character_set_client = @saved_cs_client */ ;
|
|||
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|||
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_spremenljivka_tracking`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_spremenljivka_tracking`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_spremenljivka_tracking` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`tracking_id` int(11) NOT NULL,
|
|||
|
`tracking_uid` int(11) NOT NULL,
|
|||
|
`tracking_time` datetime NOT NULL,
|
|||
|
KEY `srv_spremenljivka_tracking_ank_id` (`ank_id`),
|
|||
|
KEY `srv_spremenljivka_tracking_tracking_id` (`spr_id`),
|
|||
|
CONSTRAINT `srv_spremenljivka_tracking_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_spremenljivka_tracking_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_spremenljivka_tracking_tracking_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_spremenljivka_tracking`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_spremenljivka_tracking` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_spremenljivka_tracking` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_spremenljivka_tracking` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_statistic_profile`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_statistic_profile`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_statistic_profile` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`starts` datetime DEFAULT NULL,
|
|||
|
`ends` datetime DEFAULT NULL,
|
|||
|
`interval_txt` varchar(100) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`,`uid`),
|
|||
|
UNIQUE KEY `id` (`id`,`uid`,`name`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_statistic_profile`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_statistic_profile` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_statistic_profile` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_statistic_profile` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_status_casi`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_status_casi`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_status_casi` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`system` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`statusnull` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status0` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status1` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status2` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status3` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status4` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status5` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status6` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`statuslurker` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`,`uid`),
|
|||
|
UNIQUE KEY `id` (`id`,`uid`,`name`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_status_casi`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_status_casi` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_status_casi` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_status_casi` VALUES (1,0,'Koncal anketo',1,0,0,0,0,0,0,0,1,0),(2,0,'Vsi statusi',1,1,1,1,1,1,1,1,1,1);
|
|||
|
/*!40000 ALTER TABLE `srv_status_casi` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_status_profile`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_status_profile`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_status_profile` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`system` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`statusnull` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status0` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status1` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status2` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status3` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status4` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status5` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`status6` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`statuslurker` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`statustestni` tinyint(1) NOT NULL DEFAULT '2',
|
|||
|
`statusnonusable` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`statuspartusable` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`statususable` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
PRIMARY KEY (`id`,`uid`),
|
|||
|
UNIQUE KEY `id` (`id`,`uid`,`name`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_status_profile`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_status_profile` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_status_profile` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_status_profile` VALUES (1,0,0,'Vsi statusi',1,1,1,1,1,1,1,1,1,1,2,1,1,1),(2,0,0,'Ustrezni',1,0,0,0,0,0,0,1,1,0,2,1,1,1),(3,0,0,'Koncani',1,0,0,0,0,0,0,0,1,0,2,1,1,1);
|
|||
|
/*!40000 ALTER TABLE `srv_status_profile` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_survey_conditions`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_survey_conditions`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_survey_conditions` (
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`if_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(45) NOT NULL,
|
|||
|
KEY `srv_survey_conditions_ank_id` (`ank_id`),
|
|||
|
KEY `srv_survey_conditions_if_id` (`if_id`),
|
|||
|
CONSTRAINT `srv_survey_conditions_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `srv_survey_conditions_if_id` FOREIGN KEY (`if_id`) REFERENCES `srv_if` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_survey_conditions`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_survey_conditions` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_conditions` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_conditions` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_survey_list`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_survey_list`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_survey_list` (
|
|||
|
`id` int(11) NOT NULL,
|
|||
|
`lib_glb` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`lib_usr` enum('0','1') NOT NULL,
|
|||
|
`answers` int(11) NOT NULL DEFAULT '0',
|
|||
|
`variables` int(11) NOT NULL DEFAULT '0',
|
|||
|
`approp` int(11) NOT NULL DEFAULT '0',
|
|||
|
`i_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`i_surname` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`i_email` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`e_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`e_surname` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`e_email` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`a_first` datetime DEFAULT NULL,
|
|||
|
`a_last` datetime DEFAULT NULL,
|
|||
|
`updated` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`last_updated` datetime DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
CONSTRAINT `srv_survey_list_id` FOREIGN KEY (`id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_survey_list`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_survey_list` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_list` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_list` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_survey_misc`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_survey_misc`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_survey_misc` (
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`what` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`value` longtext,
|
|||
|
UNIQUE KEY `sid` (`sid`,`what`),
|
|||
|
CONSTRAINT `fk_srv_survey_misc_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_survey_misc`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_survey_misc` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_misc` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_misc` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_survey_session`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_survey_session`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_survey_session` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`what` varchar(255) NOT NULL,
|
|||
|
`value` longtext NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`what`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_survey_session`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_survey_session` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_session` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_session` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_survey_unsubscribe`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_survey_unsubscribe`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_survey_unsubscribe` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`email` varchar(100) DEFAULT NULL,
|
|||
|
`unsubscribe_time` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`email`),
|
|||
|
CONSTRAINT `srv_survey_unsubscribe_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_survey_unsubscribe`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_survey_unsubscribe` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_unsubscribe` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_unsubscribe` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_survey_unsubscribe_codes`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_survey_unsubscribe_codes`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_survey_unsubscribe_codes` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`email` varchar(100) DEFAULT NULL,
|
|||
|
`code` char(32) NOT NULL,
|
|||
|
UNIQUE KEY `ank_id` (`ank_id`,`email`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_survey_unsubscribe_codes`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_survey_unsubscribe_codes` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_unsubscribe_codes` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_survey_unsubscribe_codes` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_sys_filters`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_sys_filters`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_sys_filters` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`fid` varchar(100) COLLATE utf8_bin NOT NULL,
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`filter` varchar(100) COLLATE utf8_bin NOT NULL,
|
|||
|
`text` varchar(200) COLLATE utf8_bin NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `filter` (`filter`,`text`),
|
|||
|
UNIQUE KEY `type` (`type`,`filter`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_sys_filters`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_sys_filters` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_sys_filters` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_sys_filters` VALUES (1,'-1',1,'-1','Ni odgovoril',0),(2,'-2',1,'-2','Preskok (if)',0),(3,'-3',1,'-3','Prekinjeno',0),(4,'-4',1,'-4','Naknadno vprasanje',0),(5,'99',2,'-99','Ne vem',0),(6,'98',2,'-98','Zavrnil',0),(7,'97',2,'-97','Neustrezno',0),(8,'-5',1,'-5','Prazna enota',0);
|
|||
|
/*!40000 ALTER TABLE `srv_sys_filters` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_telephone_comment`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_telephone_comment`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_telephone_comment` (
|
|||
|
`rec_id` int(11) unsigned NOT NULL,
|
|||
|
`comment_time` datetime NOT NULL,
|
|||
|
`comment` text NOT NULL,
|
|||
|
PRIMARY KEY (`rec_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_telephone_comment`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_telephone_comment` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_comment` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_comment` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_telephone_current`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_telephone_current`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_telephone_current` (
|
|||
|
`rec_id` int(10) unsigned NOT NULL,
|
|||
|
`user_id` int(10) unsigned NOT NULL,
|
|||
|
`started_time` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`rec_id`),
|
|||
|
KEY `user_id` (`user_id`),
|
|||
|
KEY `started_time` (`started_time`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_telephone_current`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_telephone_current` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_current` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_current` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_telephone_history`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_telephone_history`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_telephone_history` (
|
|||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`survey_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`rec_id` int(10) unsigned NOT NULL,
|
|||
|
`insert_time` datetime NOT NULL,
|
|||
|
`status` enum('A','Z','N','R','T','P','U','D') NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `rec_id` (`rec_id`),
|
|||
|
KEY `time` (`insert_time`),
|
|||
|
KEY `status` (`status`),
|
|||
|
KEY `survey_id` (`survey_id`),
|
|||
|
KEY `user_id` (`user_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_telephone_history`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_telephone_history` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_history` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_history` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_telephone_schedule`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_telephone_schedule`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_telephone_schedule` (
|
|||
|
`rec_id` int(10) unsigned NOT NULL,
|
|||
|
`call_time` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`rec_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_telephone_schedule`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_telephone_schedule` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_schedule` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_schedule` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_telephone_setting`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_telephone_setting`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_telephone_setting` (
|
|||
|
`survey_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`status_z` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`status_n` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`status_d` int(10) NOT NULL DEFAULT '0',
|
|||
|
`max_calls` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`call_order` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`survey_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_telephone_setting`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_telephone_setting` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_setting` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_telephone_setting` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_testdata_archive`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_testdata_archive`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_testdata_archive` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`add_date` datetime DEFAULT NULL,
|
|||
|
`add_uid` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
UNIQUE KEY `ank_usr_id` (`ank_id`,`usr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_testdata_archive`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_testdata_archive` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_testdata_archive` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_testdata_archive` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_theme_editor`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_theme_editor`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_theme_editor` (
|
|||
|
`profile_id` int(11) NOT NULL,
|
|||
|
`id` int(11) NOT NULL,
|
|||
|
`type` int(11) NOT NULL,
|
|||
|
`value` varchar(100) NOT NULL,
|
|||
|
PRIMARY KEY (`profile_id`,`id`,`type`),
|
|||
|
CONSTRAINT `fk_srv_theme_editor_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `srv_theme_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_theme_editor`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_theme_editor` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_editor` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_editor` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_theme_editor_mobile`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_theme_editor_mobile`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_theme_editor_mobile` (
|
|||
|
`profile_id` int(11) NOT NULL,
|
|||
|
`id` int(11) NOT NULL,
|
|||
|
`type` int(11) NOT NULL,
|
|||
|
`value` varchar(100) NOT NULL,
|
|||
|
PRIMARY KEY (`profile_id`,`id`,`type`),
|
|||
|
CONSTRAINT `fk_srv_theme_editor_mobile_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `srv_theme_profiles_mobile` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_theme_editor_mobile`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_theme_editor_mobile` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_editor_mobile` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_editor_mobile` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_theme_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_theme_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_theme_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`skin` varchar(100) NOT NULL,
|
|||
|
`name` varchar(100) NOT NULL,
|
|||
|
`logo` varchar(250) NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_theme_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_theme_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_theme_profiles_mobile`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_theme_profiles_mobile`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_theme_profiles_mobile` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`skin` varchar(100) NOT NULL,
|
|||
|
`name` varchar(100) NOT NULL,
|
|||
|
`logo` varchar(250) NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_theme_profiles_mobile`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_theme_profiles_mobile` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_profiles_mobile` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_theme_profiles_mobile` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_time_profile`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_time_profile`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_time_profile` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`type` tinyint(1) NOT NULL,
|
|||
|
`starts` datetime DEFAULT NULL,
|
|||
|
`ends` datetime DEFAULT NULL,
|
|||
|
`interval_txt` varchar(100) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`,`uid`),
|
|||
|
UNIQUE KEY `id` (`id`,`uid`,`name`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_time_profile`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_time_profile` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_time_profile` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_time_profile` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_tracking`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_tracking`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_tracking` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
`ip` varchar(16) NOT NULL,
|
|||
|
`user` int(11) NOT NULL,
|
|||
|
`get` text NOT NULL,
|
|||
|
`post` text NOT NULL,
|
|||
|
`status` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`time_seconds` float NOT NULL DEFAULT '0',
|
|||
|
KEY `ank_id` (`ank_id`,`datetime`,`user`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_tracking`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_tracking` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_tracking_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_tracking_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_tracking_active` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
`ip` varchar(16) NOT NULL,
|
|||
|
`user` int(11) NOT NULL,
|
|||
|
`get` text NOT NULL,
|
|||
|
`post` text NOT NULL,
|
|||
|
`status` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`time_seconds` float NOT NULL DEFAULT '0',
|
|||
|
KEY `ank_id` (`ank_id`,`datetime`,`user`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_tracking_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_tracking_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_tracking_api`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_tracking_api`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_tracking_api` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
`ip` varchar(16) NOT NULL,
|
|||
|
`user` int(20) NOT NULL,
|
|||
|
`action` text NOT NULL,
|
|||
|
`kategorija` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
KEY `ank_id` (`ank_id`,`datetime`,`user`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_tracking_api`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_tracking_api` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking_api` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking_api` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_tracking_incremental`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_tracking_incremental`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_tracking_incremental` (
|
|||
|
`anketa` int(11) NOT NULL,
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
`message` text NOT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_tracking_incremental`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_tracking_incremental` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking_incremental` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_tracking_incremental` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`preview` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`testdata` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`email` varchar(100) NOT NULL,
|
|||
|
`cookie` char(32) NOT NULL,
|
|||
|
`pass` varchar(20) DEFAULT NULL,
|
|||
|
`user_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`ip` varchar(20) NOT NULL,
|
|||
|
`time_insert` datetime NOT NULL,
|
|||
|
`time_edit` datetime NOT NULL,
|
|||
|
`recnum` int(11) NOT NULL DEFAULT '0',
|
|||
|
`javascript` tinyint(4) NOT NULL,
|
|||
|
`useragent` varchar(250) NOT NULL,
|
|||
|
`device` enum('0','1','2','3') NOT NULL DEFAULT '0',
|
|||
|
`browser` varchar(250) NOT NULL,
|
|||
|
`os` varchar(250) NOT NULL,
|
|||
|
`referer` varchar(250) NOT NULL,
|
|||
|
`last_status` tinyint(4) NOT NULL DEFAULT '-1',
|
|||
|
`lurker` tinyint(4) NOT NULL DEFAULT '1',
|
|||
|
`unsubscribed` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`inv_res_id` int(11) DEFAULT NULL,
|
|||
|
`deleted` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`language` tinyint(4) NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `srv_user_cookie` (`cookie`),
|
|||
|
UNIQUE KEY `ank_id_2` (`ank_id`,`pass`),
|
|||
|
KEY `ank_id` (`ank_id`),
|
|||
|
KEY `preview` (`preview`),
|
|||
|
KEY `recnum` (`ank_id`,`recnum`,`preview`,`deleted`),
|
|||
|
KEY `response` (`ank_id`,`testdata`,`preview`,`last_status`,`time_edit`,`time_insert`),
|
|||
|
CONSTRAINT `fk_srv_user_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user_grupa`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user_grupa`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user_grupa` (
|
|||
|
`gru_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`time_edit` datetime NOT NULL,
|
|||
|
`preskocena` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`gru_id`,`usr_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_user_grupa_gru_id` FOREIGN KEY (`gru_id`) REFERENCES `srv_grupa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_user_grupa_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user_grupa`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user_grupa` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user_grupa` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user_grupa` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user_grupa_active`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user_grupa_active`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user_grupa_active` (
|
|||
|
`gru_id` int(11) NOT NULL,
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`time_edit` datetime NOT NULL,
|
|||
|
`preskocena` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`gru_id`,`usr_id`),
|
|||
|
KEY `usr_id` (`usr_id`),
|
|||
|
CONSTRAINT `fk_srv_user_grupa_active_gru_id` FOREIGN KEY (`gru_id`) REFERENCES `srv_grupa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_user_grupa_active_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user_grupa_active`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user_grupa_active` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user_grupa_active` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user_grupa_active` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user_session`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user_session`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user_session` (
|
|||
|
`ank_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`usr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`data` mediumtext NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`,`usr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user_session`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user_session` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user_session` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user_session` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user_setting`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user_setting`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user_setting` (
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`survey_list_order` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`survey_list_order_by` varchar(20) NOT NULL DEFAULT '',
|
|||
|
`survey_list_rows_per_page` int(11) NOT NULL DEFAULT '25',
|
|||
|
`survey_list_visible` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`survey_list_widths` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`icons_always_on` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`full_screen_edit` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`showAnalizaPreview` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`lockSurvey` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`autoActiveSurvey` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`advancedMySurveys` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`showIntro` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`showConcl` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`showSurveyTitle` enum('0','1') NOT NULL DEFAULT '1',
|
|||
|
`oneclickCreateMySurveys` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`survey_list_folders` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`manage_domain` varchar(50) NOT NULL DEFAULT '',
|
|||
|
`activeComments` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`showLanguageShortcut` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
`showSAicon` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`usr_id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user_setting`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user_setting` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user_setting` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user_setting` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user_setting_for_survey`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user_setting_for_survey`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user_setting_for_survey` (
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`what` varchar(200) NOT NULL,
|
|||
|
`value` varchar(255) NOT NULL,
|
|||
|
UNIQUE KEY `sid` (`sid`,`uid`,`what`),
|
|||
|
CONSTRAINT `fk_srv_user_setting_for_survey_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user_setting_for_survey`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user_setting_for_survey` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user_setting_for_survey` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user_setting_for_survey` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_user_setting_misc`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_user_setting_misc`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_user_setting_misc` (
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`what` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`value` longtext,
|
|||
|
UNIQUE KEY `uid` (`uid`,`what`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_user_setting_misc`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_user_setting_misc` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_user_setting_misc` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_user_setting_misc` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_userbase`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_userbase`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_userbase` (
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`tip` tinyint(4) NOT NULL,
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
`admin_id` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`usr_id`,`tip`),
|
|||
|
CONSTRAINT `fk_srv_userbase_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_userbase`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_userbase` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_userbase_invitations`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_userbase_invitations`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_userbase_invitations` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`name` varchar(100) NOT NULL,
|
|||
|
`subject` varchar(200) NOT NULL,
|
|||
|
`text` mediumtext NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `name` (`name`),
|
|||
|
KEY `name_2` (`name`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_userbase_invitations`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_userbase_invitations` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_invitations` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_userbase_invitations` VALUES (1,'Privzet text','Spletna anketa','<p>Prosimo, če si vzamete nekaj minut in izpolnite spodnjo anketo.</p><p>Hvala.</p><p>#URL#</p>');
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_invitations` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_userbase_respondents`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_userbase_respondents`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_userbase_respondents` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`list_id` int(11) NOT NULL,
|
|||
|
`line` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `list_id` (`list_id`),
|
|||
|
CONSTRAINT `fk_srv_userbase_respondents_list_id` FOREIGN KEY (`list_id`) REFERENCES `srv_userbase_respondents_lists` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_userbase_respondents`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_userbase_respondents` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_respondents` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_respondents` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_userbase_respondents_lists`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_userbase_respondents_lists`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_userbase_respondents_lists` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`name` varchar(100) NOT NULL,
|
|||
|
`variables` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
UNIQUE KEY `name` (`name`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_userbase_respondents_lists`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_userbase_respondents_lists` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_respondents_lists` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_respondents_lists` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_userbase_setting`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_userbase_setting`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_userbase_setting` (
|
|||
|
`ank_id` int(11) NOT NULL,
|
|||
|
`subject` varchar(200) NOT NULL,
|
|||
|
`text` text NOT NULL,
|
|||
|
`replyto` varchar(30) NOT NULL,
|
|||
|
PRIMARY KEY (`ank_id`),
|
|||
|
CONSTRAINT `fk_srv_userbase_setting_ank_id` FOREIGN KEY (`ank_id`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_userbase_setting`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_userbase_setting` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_setting` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_userbase_setting` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_userstatus`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_userstatus`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_userstatus` (
|
|||
|
`usr_id` int(11) NOT NULL,
|
|||
|
`tip` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`status` tinyint(4) NOT NULL DEFAULT '0',
|
|||
|
`datetime` datetime NOT NULL,
|
|||
|
PRIMARY KEY (`usr_id`,`tip`),
|
|||
|
CONSTRAINT `fk_srv_userstatus_usr_id` FOREIGN KEY (`usr_id`) REFERENCES `srv_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_userstatus`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_userstatus` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_userstatus` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_userstatus` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_validation`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_validation`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_validation` (
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
`reminder` enum('0','1','2') NOT NULL,
|
|||
|
`reminder_text` varchar(250) NOT NULL,
|
|||
|
PRIMARY KEY (`spr_id`,`if_id`),
|
|||
|
KEY `fk_srv_validation_if_id` (`if_id`),
|
|||
|
CONSTRAINT `fk_srv_validation_if_id` FOREIGN KEY (`if_id`) REFERENCES `srv_if` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_validation_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_validation`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_validation` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_validation` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_validation` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_variable_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_variable_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_variable_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`sid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`variables` text NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_variable_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_variable_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_variable_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_variable_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_vrednost`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_vrednost` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`spr_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`naslov2` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`variable` varchar(15) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`variable_custom` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
`random` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`other` int(11) NOT NULL DEFAULT '0',
|
|||
|
`if_id` int(11) NOT NULL DEFAULT '0',
|
|||
|
`size` int(11) NOT NULL DEFAULT '0',
|
|||
|
`naslov_graf` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`hidden` enum('0','1','2') NOT NULL DEFAULT '0',
|
|||
|
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `spr_id` (`spr_id`),
|
|||
|
KEY `if_id` (`if_id`),
|
|||
|
KEY `vrednost_if` (`if_id`),
|
|||
|
CONSTRAINT `fk_srv_vrednost_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=29026 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_vrednost`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_vrednost` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_vrednost` DISABLE KEYS */;
|
|||
|
INSERT INTO `srv_vrednost` VALUES (-4,0,'system','','',0,0,0,0,0,0,'system','0','2018-03-05 09:50:12'),(-3,0,'system','','',0,0,0,0,0,0,'system','0','2018-03-05 09:50:12'),(-2,0,'system','','',0,0,0,0,0,0,'system','0','2018-03-05 09:50:12'),(-1,0,'system','','',0,0,0,0,0,0,'system','0','2018-03-05 09:50:12'),(0,0,'system','','',0,0,0,0,0,0,'system','0','2018-03-05 09:50:12');
|
|||
|
/*!40000 ALTER TABLE `srv_vrednost` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
|
|||
|
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
|
|||
|
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
|
|||
|
/*!50003 SET character_set_client = utf8mb4 */ ;
|
|||
|
/*!50003 SET character_set_results = utf8mb4 */ ;
|
|||
|
/*!50003 SET collation_connection = utf8mb4_general_ci */ ;
|
|||
|
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
|
|||
|
/*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ;
|
|||
|
DELIMITER ;;
|
|||
|
/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `srv_vrednost_zero` BEFORE DELETE ON `srv_vrednost` FOR EACH ROW BEGIN
|
|||
|
DECLARE dummy INTEGER;
|
|||
|
IF OLD.id <= 0 THEN
|
|||
|
SELECT Cannot_delete_IDs_smaller_than_zero INTO dummy FROM srv_vrednost;
|
|||
|
END IF;
|
|||
|
END */;;
|
|||
|
DELIMITER ;
|
|||
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
|||
|
/*!50003 SET character_set_client = @saved_cs_client */ ;
|
|||
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|||
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_vrednost_map`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_vrednost_map`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_vrednost_map` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`vre_id` int(11) NOT NULL,
|
|||
|
`spr_id` int(11) NOT NULL,
|
|||
|
`overlay_id` int(11) DEFAULT '0',
|
|||
|
`overlay_type` varchar(25) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|||
|
`lat` float(19,15) NOT NULL,
|
|||
|
`lng` float(19,15) NOT NULL,
|
|||
|
`address` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '',
|
|||
|
`vrstni_red` int(11) NOT NULL DEFAULT '0',
|
|||
|
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_srv_vrednost_map_vre_id` (`vre_id`),
|
|||
|
KEY `fk_srv_vrednost_map_spr_id` (`spr_id`),
|
|||
|
CONSTRAINT `fk_srv_vrednost_map_spr_id` FOREIGN KEY (`spr_id`) REFERENCES `srv_spremenljivka` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
|
CONSTRAINT `fk_srv_vrednost_map_vre_id` FOREIGN KEY (`vre_id`) REFERENCES `srv_vrednost` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_vrednost_map`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_vrednost_map` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_vrednost_map` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_vrednost_map` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_zanka_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_zanka_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_zanka_profiles` (
|
|||
|
`id` int(11) NOT NULL,
|
|||
|
`sid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`name` varchar(200) NOT NULL,
|
|||
|
`system` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`variables` text NOT NULL,
|
|||
|
`mnozenje` int(11) NOT NULL DEFAULT '0',
|
|||
|
PRIMARY KEY (`id`,`sid`,`uid`),
|
|||
|
UNIQUE KEY `id` (`id`,`sid`,`uid`,`name`),
|
|||
|
KEY `fk_srv_zanka_profiles_sid` (`sid`),
|
|||
|
CONSTRAINT `fk_srv_zanka_profiles_sid` FOREIGN KEY (`sid`) REFERENCES `srv_anketa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_zanka_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_zanka_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_zanka_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_zanka_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `srv_zoom_profiles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `srv_zoom_profiles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `srv_zoom_profiles` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`sid` int(11) NOT NULL,
|
|||
|
`uid` int(11) NOT NULL,
|
|||
|
`name` varchar(250) NOT NULL,
|
|||
|
`vars` text NOT NULL,
|
|||
|
`conditions` text NOT NULL,
|
|||
|
`if_id` int(11) NOT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `srv_zoom_profiles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `srv_zoom_profiles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `srv_zoom_profiles` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `srv_zoom_profiles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `user_emails`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `user_emails`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `user_emails` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`email` varchar(255) NOT NULL,
|
|||
|
`active` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`created_at` timestamp NOT NULL,
|
|||
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_user_emails_users_id` (`user_id`),
|
|||
|
CONSTRAINT `fk_user_emails_users_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `user_emails`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `user_emails` WRITE;
|
|||
|
/*!40000 ALTER TABLE `user_emails` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `user_emails` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `user_login_tracker`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `user_login_tracker`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `user_login_tracker` (
|
|||
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`uid` int(10) unsigned DEFAULT NULL,
|
|||
|
`IP` varchar(255) NOT NULL DEFAULT 'N/A',
|
|||
|
`kdaj` datetime DEFAULT NULL,
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `user_login_tracker`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `user_login_tracker` WRITE;
|
|||
|
/*!40000 ALTER TABLE `user_login_tracker` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `user_login_tracker` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `user_options`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `user_options`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `user_options` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`user_id` int(11) NOT NULL,
|
|||
|
`option_name` varchar(255) NOT NULL,
|
|||
|
`option_value` varchar(255) NOT NULL,
|
|||
|
`created_at` timestamp NOT NULL,
|
|||
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `fk_user_options_users_id` (`user_id`),
|
|||
|
CONSTRAINT `fk_user_options_users_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `user_options`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `user_options` WRITE;
|
|||
|
/*!40000 ALTER TABLE `user_options` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `user_options` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `user_tracker`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `user_tracker`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `user_tracker` (
|
|||
|
`uid` varchar(10) DEFAULT NULL,
|
|||
|
`timestamp` mediumtext,
|
|||
|
`what` varchar(254) DEFAULT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `user_tracker`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `user_tracker` WRITE;
|
|||
|
/*!40000 ALTER TABLE `user_tracker` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `user_tracker` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `users`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `users`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `users` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '3',
|
|||
|
`status` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`approved` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`gdpr_agree` tinyint(1) NOT NULL DEFAULT '-1',
|
|||
|
`email` varchar(255) NOT NULL,
|
|||
|
`name` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'Nepodpisani',
|
|||
|
`surname` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
|||
|
`pass` varchar(255) DEFAULT NULL,
|
|||
|
`came_from` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`when_reg` date NOT NULL DEFAULT '2003-01-01',
|
|||
|
`show_email` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`lost_password` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`lost_password_code` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`lang` int(11) NOT NULL DEFAULT '1',
|
|||
|
`last_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:01',
|
|||
|
`LastLP` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
`manuallyApproved` enum('Y','N') NOT NULL DEFAULT 'N',
|
|||
|
`eduroam` enum('1','0') DEFAULT NULL,
|
|||
|
UNIQUE KEY `email` (`email`),
|
|||
|
KEY `id` (`id`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=1046 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `users`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `users` WRITE;
|
|||
|
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
|
|||
|
INSERT INTO `users` VALUES (1045,0,1,1,-1,'admin','admin','admin','',1,'2010-10-28',1,'','',1,'2018-05-29 09:53:39',0,'N',NULL);
|
|||
|
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `users_to_be`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `users_to_be`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `users_to_be` (
|
|||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`type` tinyint(1) NOT NULL DEFAULT '3',
|
|||
|
`status` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`approved` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`gdpr_agree` tinyint(1) NOT NULL DEFAULT '-1',
|
|||
|
`user_id` int(11) DEFAULT NULL,
|
|||
|
`email` varchar(255) NOT NULL,
|
|||
|
`name` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'Nepodpisani',
|
|||
|
`surname` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
|||
|
`pass` varchar(255) DEFAULT NULL,
|
|||
|
`came_from` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
`when_reg` date NOT NULL DEFAULT '2003-01-01',
|
|||
|
`show_email` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
`user_groups` int(11) NOT NULL,
|
|||
|
`timecode` varchar(15) NOT NULL DEFAULT '',
|
|||
|
`code` varchar(255) NOT NULL DEFAULT '',
|
|||
|
`lang` int(11) NOT NULL,
|
|||
|
KEY `id` (`id`),
|
|||
|
KEY `fk_user_to_be_user_id` (`user_id`)
|
|||
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `users_to_be`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `users_to_be` WRITE;
|
|||
|
/*!40000 ALTER TABLE `users_to_be` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `users_to_be` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `views`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `views`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `views` (
|
|||
|
`pid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`uid` int(11) NOT NULL DEFAULT '0',
|
|||
|
`time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
|
|||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `views`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `views` WRITE;
|
|||
|
/*!40000 ALTER TABLE `views` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `views` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|||
|
|
|||
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|||
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|||
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|||
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|||
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|||
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|||
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|||
|
|
|||
|
-- Dump completed on 2018-09-27 10:48:21
|