-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 10, 2017 at 03:47 PM
-- Server version: 5.5.55-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.21

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!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 */;

--
-- Database: `flockbuddy`
--

-- --------------------------------------------------------

--
-- Table structure for table `backups`
--

CREATE TABLE IF NOT EXISTS `backups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `file_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `backup_size` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `backups_name_unique` (`name`),
  UNIQUE KEY `backups_file_name_unique` (`file_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `buddies`
--

CREATE TABLE IF NOT EXISTS `buddies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `name` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(256) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `caption` text COLLATE utf8_unicode_ci NOT NULL,
  `photo` int(11) NOT NULL,
  `video` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
  `education` text COLLATE utf8_unicode_ci NOT NULL,
  `experience` text COLLATE utf8_unicode_ci NOT NULL,
  `interests` text COLLATE utf8_unicode_ci NOT NULL,
  `skills` text COLLATE utf8_unicode_ci NOT NULL,
  `password` varchar(256) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `buddies`
--

INSERT INTO `buddies` (`id`, `deleted_at`, `created_at`, `updated_at`, `name`, `email`, `caption`, `photo`, `video`, `education`, `experience`, `interests`, `skills`, `password`) VALUES
(1, NULL, '2017-06-08 01:30:03', '2017-06-09 06:08:02', 'Ranjeet Purohit', 'ranjeet@marketingmindz.in', 'It is a demo caption', 1, 'https://www.youtube.com/watch?v=6jiNS_4CEug', 'Art Centre\r\nGraphic Design 2010-2014,\r\n3D Centre\r\nMax Maya 2014-2015', 'Apple\r\nIntern 2015-2016,\r\nGoogle\r\nExecutive 2016-present', 'Running, Soccer, Gaming', 'Photoshop, Illustrator, Art Director', '$2y$10$3vq.Qsc6TFyHjbBxclJJCevlGjoX82cgQ6IN6xN4cxGMqnPhlhqfu');

-- --------------------------------------------------------

--
-- Table structure for table `departments`
--

CREATE TABLE IF NOT EXISTS `departments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `tags` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '[]',
  `color` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `departments_name_unique` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `departments`
--

INSERT INTO `departments` (`id`, `name`, `tags`, `color`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Administration', '[]', '#000', NULL, '2017-06-07 05:57:47', '2017-06-07 05:57:47');

-- --------------------------------------------------------

--
-- Table structure for table `employees`
--

CREATE TABLE IF NOT EXISTS `employees` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `designation` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `gender` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Male',
  `mobile` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `mobile2` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `dept` int(10) unsigned NOT NULL DEFAULT '1',
  `city` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `address` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
  `about` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `date_birth` date NOT NULL DEFAULT '1990-01-01',
  `date_hire` date NOT NULL,
  `date_left` date NOT NULL DEFAULT '1990-01-01',
  `salary_cur` decimal(15,3) NOT NULL DEFAULT '0.000',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `employees_email_unique` (`email`),
  KEY `employees_dept_foreign` (`dept`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `employees`
--

INSERT INTO `employees` (`id`, `name`, `designation`, `gender`, `mobile`, `mobile2`, `email`, `dept`, `city`, `address`, `about`, `date_birth`, `date_hire`, `date_left`, `salary_cur`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'Super Admin', 'Male', '8888888888', '', 'developer@marketingmindz.in', 1, 'Pune', 'Karve nagar, Pune 411030', 'About user / biography', '2017-06-07', '2017-06-07', '2017-06-07', 0.000, NULL, '2017-06-07 05:58:23', '2017-06-07 05:58:23');

-- --------------------------------------------------------

--
-- Table structure for table `la_configs`
--

CREATE TABLE IF NOT EXISTS `la_configs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `section` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `value` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=14 ;

--
-- Dumping data for table `la_configs`
--

INSERT INTO `la_configs` (`id`, `key`, `section`, `value`, `created_at`, `updated_at`) VALUES
(1, 'sitename', '', 'FlockBuddy', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(2, 'sitename_part1', '', 'Flock', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(3, 'sitename_part2', '', 'Buddy', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(4, 'sitename_short', '', 'FB', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(5, 'site_description', '', 'FlockBuddy', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(6, 'sidebar_search', '', '0', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(7, 'show_messages', '', '0', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(8, 'show_notifications', '', '0', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(9, 'show_tasks', '', '0', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(10, 'show_rightsidebar', '', '0', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(11, 'skin', '', 'skin-black', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(12, 'layout', '', 'fixed', '2017-06-07 05:57:50', '2017-06-07 06:05:07'),
(13, 'default_email', '', 'developer@marketingmindz.in', '2017-06-07 05:57:50', '2017-06-07 06:05:07');

-- --------------------------------------------------------

--
-- Table structure for table `la_menus`
--

CREATE TABLE IF NOT EXISTS `la_menus` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `url` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
  `icon` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'fa-cube',
  `type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'module',
  `parent` int(10) unsigned NOT NULL DEFAULT '0',
  `hierarchy` int(10) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=10 ;

--
-- Dumping data for table `la_menus`
--

INSERT INTO `la_menus` (`id`, `name`, `url`, `icon`, `type`, `parent`, `hierarchy`, `created_at`, `updated_at`) VALUES
(3, 'Uploads', 'uploads', 'fa-files-o', 'module', 0, 0, '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(8, 'Permissions', 'permissions', 'fa-magic', 'module', 1, 0, '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(9, 'Buddies', 'buddies', 'fa fa-cube', 'module', 0, 0, '2017-06-07 07:45:35', '2017-06-07 07:45:35');

-- --------------------------------------------------------

--
-- Table structure for table `migrations`
--

CREATE TABLE IF NOT EXISTS `migrations` (
  `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `migrations`
--

INSERT INTO `migrations` (`migration`, `batch`) VALUES
('2014_05_26_050000_create_modules_table', 1),
('2014_05_26_055000_create_module_field_types_table', 1),
('2014_05_26_060000_create_module_fields_table', 1),
('2014_10_12_000000_create_users_table', 1),
('2014_10_12_100000_create_password_resets_table', 1),
('2014_12_01_000000_create_uploads_table', 1),
('2016_05_26_064006_create_departments_table', 1),
('2016_05_26_064007_create_employees_table', 1),
('2016_05_26_064446_create_roles_table', 1),
('2016_07_05_115343_create_role_user_table', 1),
('2016_07_06_140637_create_organizations_table', 1),
('2016_07_07_134058_create_backups_table', 1),
('2016_07_07_134058_create_menus_table', 1),
('2016_09_10_163337_create_permissions_table', 1),
('2016_09_10_163520_create_permission_role_table', 1),
('2016_09_22_105958_role_module_fields_table', 1),
('2016_09_22_110008_role_module_table', 1),
('2016_10_06_115413_create_la_configs_table', 1);

-- --------------------------------------------------------

--
-- Table structure for table `modules`
--

CREATE TABLE IF NOT EXISTS `modules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `label` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `name_db` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `view_col` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `model` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `controller` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `fa_icon` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'fa-cube',
  `is_gen` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=10 ;

--
-- Dumping data for table `modules`
--

INSERT INTO `modules` (`id`, `name`, `label`, `name_db`, `view_col`, `model`, `controller`, `fa_icon`, `is_gen`, `created_at`, `updated_at`) VALUES
(1, 'Users', 'Users', 'users', 'name', 'User', 'UsersController', 'fa-group', 1, '2017-06-07 05:57:38', '2017-06-07 05:57:50'),
(2, 'Uploads', 'Uploads', 'uploads', 'name', 'Upload', 'UploadsController', 'fa-files-o', 1, '2017-06-07 05:57:39', '2017-06-07 05:57:50'),
(3, 'Departments', 'Departments', 'departments', 'name', 'Department', 'DepartmentsController', 'fa-tags', 1, '2017-06-07 05:57:39', '2017-06-07 05:57:50'),
(4, 'Employees', 'Employees', 'employees', 'name', 'Employee', 'EmployeesController', 'fa-group', 1, '2017-06-07 05:57:40', '2017-06-07 05:57:50'),
(5, 'Roles', 'Roles', 'roles', 'name', 'Role', 'RolesController', 'fa-user-plus', 1, '2017-06-07 05:57:41', '2017-06-07 05:57:50'),
(6, 'Organizations', 'Organizations', 'organizations', 'name', 'Organization', 'OrganizationsController', 'fa-university', 1, '2017-06-07 05:57:42', '2017-06-07 05:57:50'),
(7, 'Backups', 'Backups', 'backups', 'name', 'Backup', 'BackupsController', 'fa-hdd-o', 1, '2017-06-07 05:57:43', '2017-06-07 05:57:50'),
(8, 'Permissions', 'Permissions', 'permissions', 'name', 'Permission', 'PermissionsController', 'fa-magic', 1, '2017-06-07 05:57:44', '2017-06-07 05:57:51'),
(9, 'Buddies', 'Buddies', 'buddies', 'name', 'Buddy', 'BuddiesController', 'fa-cube', 1, '2017-06-07 07:43:10', '2017-06-07 07:45:36');

-- --------------------------------------------------------

--
-- Table structure for table `module_fields`
--

CREATE TABLE IF NOT EXISTS `module_fields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `colname` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `label` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `module` int(10) unsigned NOT NULL,
  `field_type` int(10) unsigned NOT NULL,
  `unique` tinyint(1) NOT NULL DEFAULT '0',
  `defaultvalue` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `minlength` int(10) unsigned NOT NULL DEFAULT '0',
  `maxlength` int(10) unsigned NOT NULL DEFAULT '0',
  `required` tinyint(1) NOT NULL DEFAULT '0',
  `popup_vals` text COLLATE utf8_unicode_ci NOT NULL,
  `sort` int(10) unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `module_fields_module_foreign` (`module`),
  KEY `module_fields_field_type_foreign` (`field_type`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=62 ;

--
-- Dumping data for table `module_fields`
--

INSERT INTO `module_fields` (`id`, `colname`, `label`, `module`, `field_type`, `unique`, `defaultvalue`, `minlength`, `maxlength`, `required`, `popup_vals`, `sort`, `created_at`, `updated_at`) VALUES
(1, 'name', 'Name', 1, 16, 0, '', 5, 250, 1, '', 0, '2017-06-07 05:57:38', '2017-06-07 05:57:38'),
(2, 'context_id', 'Context', 1, 13, 0, '0', 0, 0, 0, '', 0, '2017-06-07 05:57:38', '2017-06-07 05:57:38'),
(3, 'email', 'Email', 1, 8, 1, '', 0, 250, 0, '', 0, '2017-06-07 05:57:38', '2017-06-07 05:57:38'),
(4, 'password', 'Password', 1, 17, 0, '', 6, 250, 1, '', 0, '2017-06-07 05:57:38', '2017-06-07 05:57:38'),
(5, 'type', 'User Type', 1, 7, 0, 'Employee', 0, 0, 0, '["Employee","Client"]', 0, '2017-06-07 05:57:38', '2017-06-07 05:57:38'),
(6, 'name', 'Name', 2, 16, 0, '', 5, 250, 1, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(7, 'path', 'Path', 2, 19, 0, '', 0, 250, 0, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(8, 'extension', 'Extension', 2, 19, 0, '', 0, 20, 0, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(9, 'caption', 'Caption', 2, 19, 0, '', 0, 250, 0, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(10, 'user_id', 'Owner', 2, 7, 0, '1', 0, 0, 0, '@users', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(11, 'hash', 'Hash', 2, 19, 0, '', 0, 250, 0, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(12, 'public', 'Is Public', 2, 2, 0, '0', 0, 0, 0, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(13, 'name', 'Name', 3, 16, 1, '', 1, 250, 1, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(14, 'tags', 'Tags', 3, 20, 0, '[]', 0, 0, 0, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(15, 'color', 'Color', 3, 19, 0, '', 0, 50, 1, '', 0, '2017-06-07 05:57:39', '2017-06-07 05:57:39'),
(16, 'name', 'Name', 4, 16, 0, '', 5, 250, 1, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(17, 'designation', 'Designation', 4, 19, 0, '', 0, 50, 1, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(18, 'gender', 'Gender', 4, 18, 0, 'Male', 0, 0, 1, '["Male","Female"]', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(19, 'mobile', 'Mobile', 4, 14, 0, '', 10, 20, 1, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(20, 'mobile2', 'Alternative Mobile', 4, 14, 0, '', 10, 20, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(21, 'email', 'Email', 4, 8, 1, '', 5, 250, 1, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(22, 'dept', 'Department', 4, 7, 0, '0', 0, 0, 1, '@departments', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(23, 'city', 'City', 4, 19, 0, '', 0, 50, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(24, 'address', 'Address', 4, 1, 0, '', 0, 1000, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(25, 'about', 'About', 4, 19, 0, '', 0, 0, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(26, 'date_birth', 'Date of Birth', 4, 4, 0, '1990-01-01', 0, 0, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(27, 'date_hire', 'Hiring Date', 4, 4, 0, 'date(''Y-m-d'')', 0, 0, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(28, 'date_left', 'Resignation Date', 4, 4, 0, '1990-01-01', 0, 0, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(29, 'salary_cur', 'Current Salary', 4, 6, 0, '0.0', 0, 2, 0, '', 0, '2017-06-07 05:57:40', '2017-06-07 05:57:40'),
(30, 'name', 'Name', 5, 16, 1, '', 1, 250, 1, '', 0, '2017-06-07 05:57:41', '2017-06-07 05:57:41'),
(31, 'display_name', 'Display Name', 5, 19, 0, '', 0, 250, 1, '', 0, '2017-06-07 05:57:41', '2017-06-07 05:57:41'),
(32, 'description', 'Description', 5, 21, 0, '', 0, 1000, 0, '', 0, '2017-06-07 05:57:41', '2017-06-07 05:57:41'),
(33, 'parent', 'Parent Role', 5, 7, 0, '1', 0, 0, 0, '@roles', 0, '2017-06-07 05:57:41', '2017-06-07 05:57:41'),
(34, 'dept', 'Department', 5, 7, 0, '1', 0, 0, 0, '@departments', 0, '2017-06-07 05:57:41', '2017-06-07 05:57:41'),
(35, 'name', 'Name', 6, 16, 1, '', 5, 250, 1, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(36, 'email', 'Email', 6, 8, 1, '', 0, 250, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(37, 'phone', 'Phone', 6, 14, 0, '', 0, 20, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(38, 'website', 'Website', 6, 23, 0, 'http://', 0, 250, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(39, 'assigned_to', 'Assigned to', 6, 7, 0, '0', 0, 0, 0, '@employees', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(40, 'connect_since', 'Connected Since', 6, 4, 0, 'date(''Y-m-d'')', 0, 0, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(41, 'address', 'Address', 6, 1, 0, '', 0, 1000, 1, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(42, 'city', 'City', 6, 19, 0, '', 0, 250, 1, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(43, 'description', 'Description', 6, 21, 0, '', 0, 1000, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(44, 'profile_image', 'Profile Image', 6, 12, 0, '', 0, 250, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(45, 'profile', 'Company Profile', 6, 9, 0, '', 0, 250, 0, '', 0, '2017-06-07 05:57:42', '2017-06-07 05:57:42'),
(46, 'name', 'Name', 7, 16, 1, '', 0, 250, 1, '', 0, '2017-06-07 05:57:43', '2017-06-07 05:57:43'),
(47, 'file_name', 'File Name', 7, 19, 1, '', 0, 250, 1, '', 0, '2017-06-07 05:57:43', '2017-06-07 05:57:43'),
(48, 'backup_size', 'File Size', 7, 19, 0, '0', 0, 10, 1, '', 0, '2017-06-07 05:57:43', '2017-06-07 05:57:43'),
(49, 'name', 'Name', 8, 16, 1, '', 1, 250, 1, '', 0, '2017-06-07 05:57:44', '2017-06-07 05:57:44'),
(50, 'display_name', 'Display Name', 8, 19, 0, '', 0, 250, 1, '', 0, '2017-06-07 05:57:44', '2017-06-07 05:57:44'),
(51, 'description', 'Description', 8, 21, 0, '', 0, 1000, 0, '', 0, '2017-06-07 05:57:44', '2017-06-07 05:57:44'),
(52, 'name', 'Name', 9, 22, 0, '', 0, 15, 0, '', 1, '2017-06-07 07:44:42', '2017-06-07 07:44:42'),
(53, 'email', 'Email', 9, 8, 1, '', 0, 256, 1, '', 2, '2017-06-07 07:45:11', '2017-06-07 07:45:11'),
(54, 'caption', 'Caption', 9, 21, 0, '', 0, 0, 0, '', 4, '2017-06-08 00:39:02', '2017-06-08 00:39:02'),
(55, 'photo', 'Photo', 9, 12, 0, '', 0, 0, 0, '', 5, '2017-06-08 00:39:31', '2017-06-08 00:39:31'),
(56, 'video', 'Video', 9, 23, 0, '', 0, 256, 0, '', 6, '2017-06-08 00:39:56', '2017-06-08 00:39:56'),
(57, 'education', 'Education', 9, 21, 0, '', 0, 0, 0, '', 7, '2017-06-08 00:42:26', '2017-06-08 00:42:26'),
(58, 'experience', 'Experience', 9, 21, 0, '', 0, 0, 0, '', 8, '2017-06-08 00:43:52', '2017-06-08 00:43:52'),
(59, 'interests', 'Interests', 9, 21, 0, '', 0, 0, 0, '', 9, '2017-06-08 00:44:25', '2017-06-08 00:44:25'),
(60, 'skills', 'Skills', 9, 21, 0, '', 0, 0, 0, '', 10, '2017-06-08 00:44:44', '2017-06-08 00:44:44'),
(61, 'password', 'Password', 9, 17, 0, '', 6, 256, 1, '', 3, '2017-06-08 01:02:18', '2017-06-08 01:02:18');

-- --------------------------------------------------------

--
-- Table structure for table `module_field_types`
--

CREATE TABLE IF NOT EXISTS `module_field_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=25 ;

--
-- Dumping data for table `module_field_types`
--

INSERT INTO `module_field_types` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'Address', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(2, 'Checkbox', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(3, 'Currency', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(4, 'Date', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(5, 'Datetime', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(6, 'Decimal', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(7, 'Dropdown', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(8, 'Email', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(9, 'File', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(10, 'Float', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(11, 'HTML', '2017-06-07 05:57:36', '2017-06-07 05:57:36'),
(12, 'Image', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(13, 'Integer', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(14, 'Mobile', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(15, 'Multiselect', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(16, 'Name', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(17, 'Password', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(18, 'Radio', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(19, 'String', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(20, 'Taginput', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(21, 'Textarea', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(22, 'TextField', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(23, 'URL', '2017-06-07 05:57:37', '2017-06-07 05:57:37'),
(24, 'Files', '2017-06-07 05:57:37', '2017-06-07 05:57:37');

-- --------------------------------------------------------

--
-- Table structure for table `organizations`
--

CREATE TABLE IF NOT EXISTS `organizations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `phone` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `website` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'http://',
  `assigned_to` int(10) unsigned NOT NULL DEFAULT '1',
  `connect_since` date NOT NULL,
  `address` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
  `profile_image` int(11) NOT NULL,
  `profile` int(11) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `organizations_name_unique` (`name`),
  UNIQUE KEY `organizations_email_unique` (`email`),
  KEY `organizations_assigned_to_foreign` (`assigned_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `password_resets`
--

CREATE TABLE IF NOT EXISTS `password_resets` (
  `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`),
  KEY `password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `permissions`
--

CREATE TABLE IF NOT EXISTS `permissions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `display_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `permissions_name_unique` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `permissions`
--

INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'ADMIN_PANEL', 'Admin Panel', 'Admin Panel Permission', NULL, '2017-06-07 05:57:50', '2017-06-07 05:57:50');

-- --------------------------------------------------------

--
-- Table structure for table `permission_role`
--

CREATE TABLE IF NOT EXISTS `permission_role` (
  `permission_id` int(10) unsigned NOT NULL,
  `role_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`role_id`),
  KEY `permission_role_role_id_foreign` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `permission_role`
--

INSERT INTO `permission_role` (`permission_id`, `role_id`) VALUES
(1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `roles`
--

CREATE TABLE IF NOT EXISTS `roles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `display_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
  `parent` int(10) unsigned NOT NULL DEFAULT '1',
  `dept` int(10) unsigned NOT NULL DEFAULT '1',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_name_unique` (`name`),
  KEY `roles_parent_foreign` (`parent`),
  KEY `roles_dept_foreign` (`dept`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `roles`
--

INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `parent`, `dept`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'SUPER_ADMIN', 'Super Admin', 'Full Access Role', 1, 1, NULL, '2017-06-07 05:57:47', '2017-06-07 05:57:47');

-- --------------------------------------------------------

--
-- Table structure for table `role_module`
--

CREATE TABLE IF NOT EXISTS `role_module` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `module_id` int(10) unsigned NOT NULL,
  `acc_view` tinyint(1) NOT NULL,
  `acc_create` tinyint(1) NOT NULL,
  `acc_edit` tinyint(1) NOT NULL,
  `acc_delete` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `role_module_role_id_foreign` (`role_id`),
  KEY `role_module_module_id_foreign` (`module_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=10 ;

--
-- Dumping data for table `role_module`
--

INSERT INTO `role_module` (`id`, `role_id`, `module_id`, `acc_view`, `acc_create`, `acc_edit`, `acc_delete`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 1, 1, 1, 1, '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(2, 1, 2, 1, 1, 1, 1, '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(3, 1, 3, 1, 1, 1, 1, '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(4, 1, 4, 1, 1, 1, 1, '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(5, 1, 5, 1, 1, 1, 1, '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(6, 1, 6, 1, 1, 1, 1, '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(7, 1, 7, 1, 1, 1, 1, '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(8, 1, 8, 1, 1, 1, 1, '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(9, 1, 9, 1, 1, 1, 1, '2017-06-07 07:45:36', '2017-06-07 07:45:36');

-- --------------------------------------------------------

--
-- Table structure for table `role_module_fields`
--

CREATE TABLE IF NOT EXISTS `role_module_fields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `field_id` int(10) unsigned NOT NULL,
  `access` enum('invisible','readonly','write') COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `role_module_fields_role_id_foreign` (`role_id`),
  KEY `role_module_fields_field_id_foreign` (`field_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=62 ;

--
-- Dumping data for table `role_module_fields`
--

INSERT INTO `role_module_fields` (`id`, `role_id`, `field_id`, `access`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 'write', '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(2, 1, 2, 'write', '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(3, 1, 3, 'write', '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(4, 1, 4, 'write', '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(5, 1, 5, 'write', '2017-06-07 05:57:47', '2017-06-07 05:57:47'),
(6, 1, 6, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(7, 1, 7, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(8, 1, 8, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(9, 1, 9, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(10, 1, 10, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(11, 1, 11, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(12, 1, 12, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(13, 1, 13, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(14, 1, 14, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(15, 1, 15, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(16, 1, 16, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(17, 1, 17, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(18, 1, 18, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(19, 1, 19, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(20, 1, 20, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(21, 1, 21, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(22, 1, 22, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(23, 1, 23, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(24, 1, 24, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(25, 1, 25, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(26, 1, 26, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(27, 1, 27, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(28, 1, 28, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(29, 1, 29, 'write', '2017-06-07 05:57:48', '2017-06-07 05:57:48'),
(30, 1, 30, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(31, 1, 31, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(32, 1, 32, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(33, 1, 33, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(34, 1, 34, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(35, 1, 35, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(36, 1, 36, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(37, 1, 37, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(38, 1, 38, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(39, 1, 39, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(40, 1, 40, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(41, 1, 41, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(42, 1, 42, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(43, 1, 43, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(44, 1, 44, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(45, 1, 45, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(46, 1, 46, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(47, 1, 47, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(48, 1, 48, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(49, 1, 49, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(50, 1, 50, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(51, 1, 51, 'write', '2017-06-07 05:57:49', '2017-06-07 05:57:49'),
(52, 1, 52, 'write', '2017-06-07 07:44:43', '2017-06-07 07:44:43'),
(53, 1, 53, 'write', '2017-06-07 07:45:11', '2017-06-07 07:45:11'),
(54, 1, 54, 'write', '2017-06-08 00:39:02', '2017-06-08 00:39:02'),
(55, 1, 55, 'write', '2017-06-08 00:39:31', '2017-06-08 00:39:31'),
(56, 1, 56, 'write', '2017-06-08 00:39:57', '2017-06-08 00:39:57'),
(57, 1, 57, 'write', '2017-06-08 00:42:26', '2017-06-08 00:42:26'),
(58, 1, 58, 'write', '2017-06-08 00:43:52', '2017-06-08 00:43:52'),
(59, 1, 59, 'write', '2017-06-08 00:44:25', '2017-06-08 00:44:25'),
(60, 1, 60, 'write', '2017-06-08 00:44:44', '2017-06-08 00:44:44'),
(61, 1, 61, 'write', '2017-06-08 01:02:19', '2017-06-08 01:02:19');

-- --------------------------------------------------------

--
-- Table structure for table `role_user`
--

CREATE TABLE IF NOT EXISTS `role_user` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `role_user_role_id_foreign` (`role_id`),
  KEY `role_user_user_id_foreign` (`user_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `role_user`
--

INSERT INTO `role_user` (`id`, `role_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `uploads`
--

CREATE TABLE IF NOT EXISTS `uploads` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `path` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `extension` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `caption` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `user_id` int(10) unsigned NOT NULL DEFAULT '1',
  `hash` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `public` tinyint(1) NOT NULL DEFAULT '0',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `uploads_user_id_foreign` (`user_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `uploads`
--

INSERT INTO `uploads` (`id`, `name`, `path`, `extension`, `caption`, `user_id`, `hash`, `public`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'images.png', '/var/www/html/flockbuddy/storage/uploads/2017-06-08-064743-images.png', 'png', '', 1, 'uzle3yqdclbhtcppwty2', 0, NULL, '2017-06-08 01:17:43', '2017-06-10 04:35:07');

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE IF NOT EXISTS `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `context_id` int(10) unsigned NOT NULL DEFAULT '0',
  `email` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `password` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Employee',
  `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `name`, `context_id`, `email`, `password`, `type`, `remember_token`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'admin', 1, 'developer@marketingmindz.in', '$2y$10$OVjQfFvUlCbqhXV7KIU/zOcgZTe1sEpX5jN/AlLY0wh6h32WkuqXS', 'Employee', 'rlbMYYnn8yKyuV2E7DhdAsJwtnAcbPwmGfJOvPQRDiTuyOxivzUtU3jAWX6p', NULL, '2017-06-07 05:58:22', '2017-06-09 23:49:58');

--
-- Constraints for dumped tables
--

--
-- Constraints for table `employees`
--
ALTER TABLE `employees`
  ADD CONSTRAINT `employees_dept_foreign` FOREIGN KEY (`dept`) REFERENCES `departments` (`id`);

--
-- Constraints for table `module_fields`
--
ALTER TABLE `module_fields`
  ADD CONSTRAINT `module_fields_field_type_foreign` FOREIGN KEY (`field_type`) REFERENCES `module_field_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  ADD CONSTRAINT `module_fields_module_foreign` FOREIGN KEY (`module`) REFERENCES `modules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `organizations`
--
ALTER TABLE `organizations`
  ADD CONSTRAINT `organizations_assigned_to_foreign` FOREIGN KEY (`assigned_to`) REFERENCES `employees` (`id`);

--
-- Constraints for table `permission_role`
--
ALTER TABLE `permission_role`
  ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `roles`
--
ALTER TABLE `roles`
  ADD CONSTRAINT `roles_dept_foreign` FOREIGN KEY (`dept`) REFERENCES `departments` (`id`),
  ADD CONSTRAINT `roles_parent_foreign` FOREIGN KEY (`parent`) REFERENCES `roles` (`id`);

--
-- Constraints for table `role_module`
--
ALTER TABLE `role_module`
  ADD CONSTRAINT `role_module_module_id_foreign` FOREIGN KEY (`module_id`) REFERENCES `modules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  ADD CONSTRAINT `role_module_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `role_module_fields`
--
ALTER TABLE `role_module_fields`
  ADD CONSTRAINT `role_module_fields_field_id_foreign` FOREIGN KEY (`field_id`) REFERENCES `module_fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  ADD CONSTRAINT `role_module_fields_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `role_user`
--
ALTER TABLE `role_user`
  ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  ADD CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `uploads`
--
ALTER TABLE `uploads`
  ADD CONSTRAINT `uploads_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);

/*!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 */;
