曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.かつては雑草やヨモギと共に雨や露を分かち合っていたが、今では松やヒノキと共に霜や雪に耐えている。曾与蒿藜同雨露,Once sharing rain and dew with weeds and wormwood, now enduring frost and snow with pines and cypresses.终随松柏到冰霜.曾与蒿藜同雨露한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.,终随松柏到冰霜.譖セ荳手珍阯懷酔髮ィ髴イ�檎サ磯囂譚セ譟丞芦蜀ー髴�曾与蒿藜同雨露,鏇句笌钂胯棞鍚岄洦闇诧紝缁堥殢鏉炬煆鍒板啺闇�终随松柏到冰霜.曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.曾与蒿藜同雨露,终随松柏到冰霜.
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: `kimai2670`
--
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_access_token`
--
CREATE TABLE `kimai2_access_token` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`token` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_usage` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`expires_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_6FB0DB1E5F37A13B` (`token`),
KEY `IDX_6FB0DB1EA76ED395` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_activities`
--
CREATE TABLE `kimai2_activities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) DEFAULT NULL,
`name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`comment` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL,
`color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`time_budget` int(11) NOT NULL DEFAULT '0',
`budget` double NOT NULL DEFAULT '0',
`budget_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`billable` tinyint(1) NOT NULL DEFAULT '1',
`invoice_text` longtext COLLATE utf8mb4_unicode_ci,
`number` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
PRIMARY KEY (`id`),
KEY `IDX_8811FE1C166D1F9C` (`project_id`),
KEY `IDX_8811FE1C7AB0E859166D1F9C` (`visible`,`project_id`),
KEY `IDX_8811FE1C7AB0E859166D1F9C5E237E06` (`visible`,`project_id`,`name`),
KEY `IDX_8811FE1C7AB0E8595E237E06` (`visible`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_activities_meta`
--
CREATE TABLE `kimai2_activities_meta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`activity_id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_A7C0A43D81C060965E237E06` (`activity_id`,`name`),
KEY `IDX_A7C0A43D81C06096` (`activity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_activities_rates`
--
CREATE TABLE `kimai2_activities_rates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`activity_id` int(11) DEFAULT NULL,
`rate` double NOT NULL,
`fixed` tinyint(1) NOT NULL,
`internal_rate` double DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_4A7F11BEA76ED39581C06096` (`user_id`,`activity_id`),
KEY `IDX_4A7F11BEA76ED395` (`user_id`),
KEY `IDX_4A7F11BE81C06096` (`activity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_activities_teams`
--
CREATE TABLE `kimai2_activities_teams` (
`activity_id` int(11) NOT NULL,
`team_id` int(11) NOT NULL,
PRIMARY KEY (`activity_id`,`team_id`),
KEY `IDX_986998DA81C06096` (`activity_id`),
KEY `IDX_986998DA296CD8AE` (`team_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_bookmarks`
--
CREATE TABLE `kimai2_bookmarks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_4016EF25A76ED3955E237E06` (`user_id`,`name`),
KEY `IDX_4016EF25A76ED395` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_configuration`
--
CREATE TABLE `kimai2_configuration` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_1C5D63D85E237E06` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `kimai2_configuration`
--
INSERT INTO `kimai2_configuration` VALUES
(1, 'defaults.customer.language', 'en');
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_customers`
--
CREATE TABLE `kimai2_customers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`number` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL,
`company` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contact` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` text COLLATE utf8mb4_unicode_ci,
`country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`fax` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mobile` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`homepage` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`timezone` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`time_budget` int(11) NOT NULL DEFAULT '0',
`budget` double NOT NULL DEFAULT '0',
`vat_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`budget_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`billable` tinyint(1) NOT NULL DEFAULT '1',
`invoice_template_id` int(11) DEFAULT NULL,
`invoice_text` longtext COLLATE utf8mb4_unicode_ci,
`created_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`address_line1` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address_line2` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address_line3` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`postcode` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`buyer_reference` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`invoice_email` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`language` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en',
PRIMARY KEY (`id`),
KEY `IDX_5A9760447AB0E859` (`visible`),
KEY `IDX_5A97604412946D8B` (`invoice_template_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_customers_comments`
--
CREATE TABLE `kimai2_customers_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`created_by_id` int(11) NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` datetime NOT NULL,
`pinned` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `IDX_A5B142D99395C3F3` (`customer_id`),
KEY `IDX_A5B142D9B03A8386` (`created_by_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_customers_meta`
--
CREATE TABLE `kimai2_customers_meta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_A48A760F9395C3F35E237E06` (`customer_id`,`name`),
KEY `IDX_A48A760F9395C3F3` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_customers_rates`
--
CREATE TABLE `kimai2_customers_rates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`customer_id` int(11) DEFAULT NULL,
`rate` double NOT NULL,
`fixed` tinyint(1) NOT NULL,
`internal_rate` double DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_82AB0AECA76ED3959395C3F3` (`user_id`,`customer_id`),
KEY `IDX_82AB0AECA76ED395` (`user_id`),
KEY `IDX_82AB0AEC9395C3F3` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_customers_teams`
--
CREATE TABLE `kimai2_customers_teams` (
`customer_id` int(11) NOT NULL,
`team_id` int(11) NOT NULL,
PRIMARY KEY (`customer_id`,`team_id`),
KEY `IDX_50BD83889395C3F3` (`customer_id`),
KEY `IDX_50BD8388296CD8AE` (`team_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_export_templates`
--
CREATE TABLE `kimai2_export_templates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`renderer` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`language` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`columns` json NOT NULL,
`options` json NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_2F0CA26F2B36786B` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_invoices`
--
CREATE TABLE `kimai2_invoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`invoice_number` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` datetime NOT NULL,
`timezone` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`total` double NOT NULL,
`tax` double NOT NULL,
`currency` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`due_days` int(11) NOT NULL,
`vat` double NOT NULL,
`invoice_filename` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`payment_date` date DEFAULT NULL,
`comment` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_76C38E372DA68207` (`invoice_number`),
UNIQUE KEY `UNIQ_76C38E372323B33D` (`invoice_filename`),
KEY `IDX_76C38E37A76ED395` (`user_id`),
KEY `IDX_76C38E379395C3F3` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_invoices_meta`
--
CREATE TABLE `kimai2_invoices_meta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_7EDC37D92989F1FD5E237E06` (`invoice_id`,`name`),
KEY `IDX_7EDC37D92989F1FD` (`invoice_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_invoice_templates`
--
CREATE TABLE `kimai2_invoice_templates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` text COLLATE utf8mb4_unicode_ci,
`due_days` int(11) NOT NULL,
`vat` double DEFAULT '0',
`calculator` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`number_generator` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`renderer` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`payment_terms` text COLLATE utf8mb4_unicode_ci,
`vat_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contact` longtext COLLATE utf8mb4_unicode_ci,
`payment_details` longtext COLLATE utf8mb4_unicode_ci,
`language` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL,
`customer_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_1626CFE95E237E06` (`name`),
KEY `IDX_1626CFE99395C3F3` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_invoice_templates_meta`
--
CREATE TABLE `kimai2_invoice_templates_meta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`template_id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_A165B0555DA0FB85E237E06` (`template_id`,`name`),
KEY `IDX_A165B0555DA0FB8` (`template_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_projects`
--
CREATE TABLE `kimai2_projects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`order_number` tinytext COLLATE utf8mb4_unicode_ci,
`comment` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL,
`budget` double NOT NULL DEFAULT '0',
`color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`time_budget` int(11) NOT NULL DEFAULT '0',
`order_date` datetime DEFAULT NULL,
`start` datetime DEFAULT NULL,
`end` datetime DEFAULT NULL,
`timezone` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`budget_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`billable` tinyint(1) NOT NULL DEFAULT '1',
`invoice_text` longtext COLLATE utf8mb4_unicode_ci,
`global_activities` tinyint(1) NOT NULL DEFAULT '1',
`number` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`locked_until` date DEFAULT NULL COMMENT '(DC2Type:date_immutable)',
PRIMARY KEY (`id`),
KEY `IDX_407F12069395C3F3` (`customer_id`),
KEY `IDX_407F12069395C3F37AB0E8595E237E06` (`customer_id`,`visible`,`name`),
KEY `IDX_407F12069395C3F37AB0E859BF396750` (`customer_id`,`visible`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_projects_comments`
--
CREATE TABLE `kimai2_projects_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`created_by_id` int(11) NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` datetime NOT NULL,
`pinned` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `IDX_29A23638166D1F9C` (`project_id`),
KEY `IDX_29A23638B03A8386` (`created_by_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_projects_meta`
--
CREATE TABLE `kimai2_projects_meta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_50536EF2166D1F9C5E237E06` (`project_id`,`name`),
KEY `IDX_50536EF2166D1F9C` (`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_projects_rates`
--
CREATE TABLE `kimai2_projects_rates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`project_id` int(11) DEFAULT NULL,
`rate` double NOT NULL,
`fixed` tinyint(1) NOT NULL,
`internal_rate` double DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_41535D55A76ED395166D1F9C` (`user_id`,`project_id`),
KEY `IDX_41535D55A76ED395` (`user_id`),
KEY `IDX_41535D55166D1F9C` (`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_projects_teams`
--
CREATE TABLE `kimai2_projects_teams` (
`project_id` int(11) NOT NULL,
`team_id` int(11) NOT NULL,
PRIMARY KEY (`project_id`,`team_id`),
KEY `IDX_9345D431166D1F9C` (`project_id`),
KEY `IDX_9345D431296CD8AE` (`team_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_roles`
--
CREATE TABLE `kimai2_roles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `roles_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_roles_permissions`
--
CREATE TABLE `kimai2_roles_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`role_id` int(11) NOT NULL,
`permission` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`allowed` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `role_permission` (`role_id`,`permission`),
KEY `IDX_D263A3B8D60322AC` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_sessions`
--
CREATE TABLE `kimai2_sessions` (
`id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`data` blob NOT NULL,
`time` int(10) unsigned NOT NULL,
`lifetime` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `lifetime_idx` (`lifetime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_tags`
--
CREATE TABLE `kimai2_tags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`visible` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_27CAF54C5E237E06` (`name`),
KEY `IDX_27CAF54C7AB0E859` (`visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_teams`
--
CREATE TABLE `kimai2_teams` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_3BEDDC7F5E237E06` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_timesheet`
--
CREATE TABLE `kimai2_timesheet` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user` int(11) NOT NULL,
`activity_id` int(11) NOT NULL,
`project_id` int(11) NOT NULL,
`start_time` datetime NOT NULL,
`end_time` datetime DEFAULT NULL,
`duration` int(11) DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`rate` double NOT NULL,
`fixed_rate` double DEFAULT NULL,
`hourly_rate` double DEFAULT NULL,
`exported` tinyint(1) NOT NULL DEFAULT '0',
`timezone` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`internal_rate` double DEFAULT NULL,
`billable` tinyint(1) DEFAULT '1',
`category` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'work',
`modified_at` datetime DEFAULT NULL,
`date_tz` date NOT NULL,
`break` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_4F60C6B18D93D649` (`user`),
KEY `IDX_4F60C6B181C06096` (`activity_id`),
KEY `IDX_4F60C6B1166D1F9C` (`project_id`),
KEY `IDX_4F60C6B18D93D649502DF587` (`user`,`start_time`),
KEY `IDX_4F60C6B1502DF587` (`start_time`),
KEY `IDX_4F60C6B1502DF58741561401` (`start_time`,`end_time`),
KEY `IDX_4F60C6B1502DF587415614018D93D649` (`start_time`,`end_time`,`user`),
KEY `IDX_4F60C6B1BDF467148D93D649` (`date_tz`,`user`),
KEY `IDX_4F60C6B1415614018D93D649` (`end_time`,`user`),
KEY `IDX_TIMESHEET_TICKTAC` (`end_time`,`user`,`start_time`),
KEY `IDX_TIMESHEET_RECENT_ACTIVITIES` (`user`,`project_id`,`activity_id`),
KEY `IDX_TIMESHEET_RESULT_STATS` (`user`,`id`,`duration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_timesheet_meta`
--
CREATE TABLE `kimai2_timesheet_meta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timesheet_id` int(11) NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci,
`visible` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_CB606CBAABDD46BE5E237E06` (`timesheet_id`,`name`),
KEY `IDX_CB606CBAABDD46BE` (`timesheet_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_timesheet_tags`
--
CREATE TABLE `kimai2_timesheet_tags` (
`timesheet_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
PRIMARY KEY (`timesheet_id`,`tag_id`),
KEY `IDX_E3284EFEABDD46BE` (`timesheet_id`),
KEY `IDX_E3284EFEBAD26311` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_users`
--
CREATE TABLE `kimai2_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(180) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(180) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alias` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`enabled` tinyint(1) NOT NULL,
`registration_date` datetime DEFAULT NULL,
`title` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`roles` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`last_login` datetime DEFAULT NULL,
`confirmation_token` varchar(180) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password_requested_at` datetime DEFAULT NULL,
`api_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`auth` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`account` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`totp_secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`totp_enabled` tinyint(1) NOT NULL DEFAULT '0',
`system_account` tinyint(1) NOT NULL DEFAULT '0',
`supervisor_id` int(11) DEFAULT NULL,
`signature_date` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_B9AC5BCEF85E0677` (`username`),
UNIQUE KEY `UNIQ_B9AC5BCEE7927C74` (`email`),
UNIQUE KEY `UNIQ_B9AC5BCEC05FB297` (`confirmation_token`),
KEY `IDX_B9AC5BCE19E9AC5F` (`supervisor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `kimai2_users`
--
INSERT INTO `kimai2_users` VALUES
(1, '[[admin_username]]', '[[admin_email]]', '[[admin_pass]]', NULL, 1, '[[regtime]]', NULL, NULL, 'a:1:{i:0;s:16:"ROLE_SUPER_ADMIN";}', NULL, NULL, NULL, NULL, 'kimai', NULL, NULL, NULL, 0, 0, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_users_teams`
--
CREATE TABLE `kimai2_users_teams` (
`user_id` int(11) NOT NULL,
`team_id` int(11) NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`teamlead` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_B5E92CF8A76ED395296CD8AE` (`user_id`,`team_id`),
KEY `IDX_B5E92CF8A76ED395` (`user_id`),
KEY `IDX_B5E92CF8296CD8AE` (`team_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_user_preferences`
--
CREATE TABLE `kimai2_user_preferences` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_8D08F631A76ED3955E237E06` (`user_id`,`name`),
KEY `IDX_8D08F631A76ED395` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=16 ;
--
-- Dumping data for table `kimai2_user_preferences`
--
INSERT INTO `kimai2_user_preferences` VALUES
(1, 1, 'timezone', 'America/New_York'),
(2, 1, 'language', 'en'),
(3, 1, 'skin', 'auto'),
(4, 1, 'work_contract_type', 'none'),
(5, 1, 'work_monday', '0'),
(6, 1, 'work_tuesday', '0'),
(7, 1, 'work_wednesday', '0'),
(8, 1, 'work_thursday', '0'),
(9, 1, 'work_friday', '0'),
(10, 1, 'work_saturday', '0'),
(11, 1, 'work_sunday', '0'),
(12, 1, 'public_holiday_group', NULL),
(13, 1, 'holidays', '0'),
(14, 1, 'work_start_day', NULL),
(15, 1, 'work_last_day', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `kimai2_working_times`
--
CREATE TABLE `kimai2_working_times` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`approved_by` int(11) DEFAULT NULL,
`date` date NOT NULL,
`expected` int(11) NOT NULL,
`actual` int(11) NOT NULL,
`approved_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_F95E4933A76ED395AA9E377A` (`user_id`,`date`),
KEY `IDX_F95E4933A76ED395` (`user_id`),
KEY `IDX_F95E49334EA3CB3D` (`approved_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `migration_versions`
--
CREATE TABLE `migration_versions` (
`version` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`executed_at` datetime DEFAULT NULL,
`execution_time` int(11) DEFAULT NULL,
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `migration_versions`
--
INSERT INTO `migration_versions` VALUES
('DoctrineMigrations\\Version20180701120000', '[[regtime]]', 1012),
('DoctrineMigrations\\Version20180715160326', '[[regtime]]', 602),
('DoctrineMigrations\\Version20180730044139', '[[regtime]]', 176),
('DoctrineMigrations\\Version20180805183527', '[[regtime]]', 160),
('DoctrineMigrations\\Version20180903202256', '[[regtime]]', 224),
('DoctrineMigrations\\Version20180905190737', '[[regtime]]', 638),
('DoctrineMigrations\\Version20180924111853', '[[regtime]]', 155),
('DoctrineMigrations\\Version20181031220003', '[[regtime]]', 952),
('DoctrineMigrations\\Version20190124004014', '[[regtime]]', 109),
('DoctrineMigrations\\Version20190201150324', '[[regtime]]', 99),
('DoctrineMigrations\\Version20190219200020', '[[regtime]]', 0),
('DoctrineMigrations\\Version20190305152308', '[[regtime]]', 476),
('DoctrineMigrations\\Version20190321181243', '[[regtime]]', 51),
('DoctrineMigrations\\Version20190502161758', '[[regtime]]', 255),
('DoctrineMigrations\\Version20190510205245', '[[regtime]]', 131),
('DoctrineMigrations\\Version20190605171157', '[[regtime]]', 269),
('DoctrineMigrations\\Version20190617100845', '[[regtime]]', 795),
('DoctrineMigrations\\Version20190706224211', '[[regtime]]', 600),
('DoctrineMigrations\\Version20190706224219', '[[regtime]]', 441),
('DoctrineMigrations\\Version20190729162655', '[[regtime]]', 264),
('DoctrineMigrations\\Version20190730123324', '[[regtime]]', 1125),
('DoctrineMigrations\\Version20190813162649', '[[regtime]]', 125),
('DoctrineMigrations\\Version20191024100951', '[[regtime]]', 104),
('DoctrineMigrations\\Version20191108151534', '[[regtime]]', 255),
('DoctrineMigrations\\Version20191113132640', '[[regtime]]', 12),
('DoctrineMigrations\\Version20191116110124', '[[regtime]]', 193),
('DoctrineMigrations\\Version20191204120823', '[[regtime]]', 112),
('DoctrineMigrations\\Version20200109102138', '[[regtime]]', 624),
('DoctrineMigrations\\Version20200125123942', '[[regtime]]', 132),
('DoctrineMigrations\\Version20200204124425', '[[regtime]]', 98),
('DoctrineMigrations\\Version20200205115243', '[[regtime]]', 1092),
('DoctrineMigrations\\Version20200205115244', '[[regtime]]', 357),
('DoctrineMigrations\\Version20200308171950', '[[regtime]]', 407),
('DoctrineMigrations\\Version20200323163038', '[[regtime]]', 490),
('DoctrineMigrations\\Version20200323163039', '[[regtime]]', 0),
('DoctrineMigrations\\Version20200413133226', '[[regtime]]', 131),
('DoctrineMigrations\\Version20200524142042', '[[regtime]]', 74),
('DoctrineMigrations\\Version20200705152310', '[[regtime]]', 185),
('DoctrineMigrations\\Version20200725213424', '[[regtime]]', 423),
('DoctrineMigrations\\Version20210316224358', '[[regtime]]', 275),
('DoctrineMigrations\\Version20210320162820', '[[regtime]]', 175),
('DoctrineMigrations\\Version20210405105611', '[[regtime]]', 50),
('DoctrineMigrations\\Version20210605154245', '[[regtime]]', 193),
('DoctrineMigrations\\Version20210704111542', '[[regtime]]', 287),
('DoctrineMigrations\\Version20210717211144', '[[regtime]]', 175),
('DoctrineMigrations\\Version20210719123928', '[[regtime]]', 420),
('DoctrineMigrations\\Version20210727104955', '[[regtime]]', 784),
('DoctrineMigrations\\Version20210802152259', '[[regtime]]', 199),
('DoctrineMigrations\\Version20210802152814', '[[regtime]]', 9),
('DoctrineMigrations\\Version20210802160837', '[[regtime]]', 281),
('DoctrineMigrations\\Version20210802174318', '[[regtime]]', 180),
('DoctrineMigrations\\Version20210802174319', '[[regtime]]', 1),
('DoctrineMigrations\\Version20210802174320', '[[regtime]]', 174),
('DoctrineMigrations\\Version20211008092010', '[[regtime]]', 38),
('DoctrineMigrations\\Version20211230163612', '[[regtime]]', 179),
('DoctrineMigrations\\Version20220101204501', '[[regtime]]', 274),
('DoctrineMigrations\\Version20220315224645', '[[regtime]]', 397),
('DoctrineMigrations\\Version20220404150236', '[[regtime]]', 197),
('DoctrineMigrations\\Version20220531145920', '[[regtime]]', 299),
('DoctrineMigrations\\Version20220722125847', '[[regtime]]', 137),
('DoctrineMigrations\\Version20230126002049', '[[regtime]]', 729),
('DoctrineMigrations\\Version20230126002050', '[[regtime]]', 167),
('DoctrineMigrations\\Version20230327143628', '[[regtime]]', 451),
('DoctrineMigrations\\Version20230606125948', '[[regtime]]', 117),
('DoctrineMigrations\\Version20230819090536', '[[regtime]]', 331),
('DoctrineMigrations\\Version20231130000719', '[[regtime]]', 0),
('DoctrineMigrations\\Version20240214061246', '[[regtime]]', 204),
('DoctrineMigrations\\Version20240326125247', '[[regtime]]', 216),
('DoctrineMigrations\\Version20240920105524', '[[regtime]]', 0),
('DoctrineMigrations\\Version20240926111739', '[[regtime]]', 468),
('DoctrineMigrations\\Version20250608143244', '[[regtime]]', 72),
('DoctrineMigrations\\Version20251031142000', '[[regtime]]', 488),
('DoctrineMigrations\\Version20251031143000', '[[regtime]]', 213),
('DoctrineMigrations\\Version20251214160001', '[[regtime]]', 72),
('DoctrineMigrations\\Version20260530080724', '[[regtime]]', 199),
('DoctrineMigrations\\Version20260802144517', '[[regtime]]', 52),
('DoctrineMigrations\\Version20260802173206', '[[regtime]]', 100),
('DoctrineMigrations\\Version20260802183206', '[[regtime]]', 116),
('DoctrineMigrations\\Version20260804090000', '[[regtime]]', 119);
--
-- Constraints for dumped tables
--
--
-- Constraints for table `kimai2_access_token`
--
ALTER TABLE `kimai2_access_token`
ADD CONSTRAINT `FK_6FB0DB1EA76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_activities`
--
ALTER TABLE `kimai2_activities`
ADD CONSTRAINT `FK_8811FE1C166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `kimai2_projects` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_activities_meta`
--
ALTER TABLE `kimai2_activities_meta`
ADD CONSTRAINT `FK_A7C0A43D81C06096` FOREIGN KEY (`activity_id`) REFERENCES `kimai2_activities` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_activities_rates`
--
ALTER TABLE `kimai2_activities_rates`
ADD CONSTRAINT `FK_4A7F11BE81C06096` FOREIGN KEY (`activity_id`) REFERENCES `kimai2_activities` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_4A7F11BEA76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_activities_teams`
--
ALTER TABLE `kimai2_activities_teams`
ADD CONSTRAINT `FK_986998DA296CD8AE` FOREIGN KEY (`team_id`) REFERENCES `kimai2_teams` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_986998DA81C06096` FOREIGN KEY (`activity_id`) REFERENCES `kimai2_activities` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_bookmarks`
--
ALTER TABLE `kimai2_bookmarks`
ADD CONSTRAINT `FK_4016EF25A76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_customers`
--
ALTER TABLE `kimai2_customers`
ADD CONSTRAINT `FK_5A97604412946D8B` FOREIGN KEY (`invoice_template_id`) REFERENCES `kimai2_invoice_templates` (`id`) ON DELETE SET NULL;
--
-- Constraints for table `kimai2_customers_comments`
--
ALTER TABLE `kimai2_customers_comments`
ADD CONSTRAINT `FK_A5B142D99395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_A5B142D9B03A8386` FOREIGN KEY (`created_by_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_customers_meta`
--
ALTER TABLE `kimai2_customers_meta`
ADD CONSTRAINT `FK_A48A760F9395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_customers_rates`
--
ALTER TABLE `kimai2_customers_rates`
ADD CONSTRAINT `FK_82AB0AEC9395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_82AB0AECA76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_customers_teams`
--
ALTER TABLE `kimai2_customers_teams`
ADD CONSTRAINT `FK_50BD8388296CD8AE` FOREIGN KEY (`team_id`) REFERENCES `kimai2_teams` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_50BD83889395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_invoices`
--
ALTER TABLE `kimai2_invoices`
ADD CONSTRAINT `FK_76C38E379395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_76C38E37A76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_invoices_meta`
--
ALTER TABLE `kimai2_invoices_meta`
ADD CONSTRAINT `FK_7EDC37D92989F1FD` FOREIGN KEY (`invoice_id`) REFERENCES `kimai2_invoices` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_invoice_templates`
--
ALTER TABLE `kimai2_invoice_templates`
ADD CONSTRAINT `FK_1626CFE99395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE SET NULL;
--
-- Constraints for table `kimai2_invoice_templates_meta`
--
ALTER TABLE `kimai2_invoice_templates_meta`
ADD CONSTRAINT `FK_A165B0555DA0FB8` FOREIGN KEY (`template_id`) REFERENCES `kimai2_invoice_templates` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_projects`
--
ALTER TABLE `kimai2_projects`
ADD CONSTRAINT `FK_407F12069395C3F3` FOREIGN KEY (`customer_id`) REFERENCES `kimai2_customers` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_projects_comments`
--
ALTER TABLE `kimai2_projects_comments`
ADD CONSTRAINT `FK_29A23638166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `kimai2_projects` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_29A23638B03A8386` FOREIGN KEY (`created_by_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_projects_meta`
--
ALTER TABLE `kimai2_projects_meta`
ADD CONSTRAINT `FK_50536EF2166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `kimai2_projects` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_projects_rates`
--
ALTER TABLE `kimai2_projects_rates`
ADD CONSTRAINT `FK_41535D55166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `kimai2_projects` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_41535D55A76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_projects_teams`
--
ALTER TABLE `kimai2_projects_teams`
ADD CONSTRAINT `FK_9345D431166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `kimai2_projects` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_9345D431296CD8AE` FOREIGN KEY (`team_id`) REFERENCES `kimai2_teams` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_roles_permissions`
--
ALTER TABLE `kimai2_roles_permissions`
ADD CONSTRAINT `FK_D263A3B8D60322AC` FOREIGN KEY (`role_id`) REFERENCES `kimai2_roles` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_timesheet`
--
ALTER TABLE `kimai2_timesheet`
ADD CONSTRAINT `FK_4F60C6B1166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `kimai2_projects` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_4F60C6B181C06096` FOREIGN KEY (`activity_id`) REFERENCES `kimai2_activities` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_4F60C6B18D93D649` FOREIGN KEY (`user`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_timesheet_meta`
--
ALTER TABLE `kimai2_timesheet_meta`
ADD CONSTRAINT `FK_CB606CBAABDD46BE` FOREIGN KEY (`timesheet_id`) REFERENCES `kimai2_timesheet` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_timesheet_tags`
--
ALTER TABLE `kimai2_timesheet_tags`
ADD CONSTRAINT `FK_732EECA9ABDD46BE` FOREIGN KEY (`timesheet_id`) REFERENCES `kimai2_timesheet` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_732EECA9BAD26311` FOREIGN KEY (`tag_id`) REFERENCES `kimai2_tags` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_users`
--
ALTER TABLE `kimai2_users`
ADD CONSTRAINT `FK_B9AC5BCE19E9AC5F` FOREIGN KEY (`supervisor_id`) REFERENCES `kimai2_users` (`id`) ON DELETE SET NULL;
--
-- Constraints for table `kimai2_users_teams`
--
ALTER TABLE `kimai2_users_teams`
ADD CONSTRAINT `FK_B5E92CF8296CD8AE` FOREIGN KEY (`team_id`) REFERENCES `kimai2_teams` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_B5E92CF8A76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_user_preferences`
--
ALTER TABLE `kimai2_user_preferences`
ADD CONSTRAINT `FK_8D08F631A76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `kimai2_working_times`
--
ALTER TABLE `kimai2_working_times`
ADD CONSTRAINT `FK_F95E49334EA3CB3D` FOREIGN KEY (`approved_by`) REFERENCES `kimai2_users` (`id`) ON DELETE SET NULL,
ADD CONSTRAINT `FK_F95E4933A76ED395` FOREIGN KEY (`user_id`) REFERENCES `kimai2_users` (`id`) ON DELETE CASCADE;
/*!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 */;