/*
 Navicat Premium Data Transfer

 Source Server         : Localhost
 Source Server Type    : MySQL
 Source Server Version : 50534
 Source Host           : localhost
 Source Database       : itrims_angular

 Target Server Type    : MySQL
 Target Server Version : 50534
 File Encoding         : utf-8

 Date: 08/22/2016 22:12:17 PM
*/

SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;

-- ----------------------------
--  Table structure for `combined_requirements`
-- ----------------------------
DROP TABLE IF EXISTS `combined_requirements`;
CREATE TABLE `combined_requirements` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `is_active` tinyint(1) DEFAULT NULL,
  `combinations` text,
  `organization_id` int(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;

-- ----------------------------
--  Table structure for `criminal_billing_exceptions`
-- ----------------------------
DROP TABLE IF EXISTS `criminal_billing_exceptions`;
CREATE TABLE `criminal_billing_exceptions` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `is_active` tinyint(1) DEFAULT NULL,
  `crim_contact_id` int(10) DEFAULT NULL,
  `exclude_search` tinyint(1) DEFAULT NULL,
  `exclude_fee` tinyint(1) DEFAULT NULL,
  `special_pricing` tinyint(3) DEFAULT NULL,
  `organization_id` int(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;

-- ----------------------------
--  Table structure for `replacements`
-- ----------------------------
DROP TABLE IF EXISTS `replacements`;
CREATE TABLE `replacements` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `is_active` tinyint(1) DEFAULT NULL,
  `replacements` text,
  `organization_id` int(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;

SET FOREIGN_KEY_CHECKS = 1;
