-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.sql
More file actions
27 lines (21 loc) · 831 Bytes
/
schema.sql
File metadata and controls
27 lines (21 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
-- Database Export: job_report
-- Generated on: 2025-12-25T06:17:06.591Z
-- MySQL Handler Export
CREATE DATABASE IF NOT EXISTS `job_report`;
USE `job_report`;
-- Table structure for `dailywork`
DROP TABLE IF EXISTS `dailywork`;
CREATE TABLE `dailywork` (
`date` date NOT NULL,
`hours` tinyint NOT NULL DEFAULT '0',
`minutes` tinyint NOT NULL DEFAULT '0',
`seconds` tinyint NOT NULL DEFAULT '0',
`detailedWork` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT (_utf8mb4''),
`extraminutes` int NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Table structure for `hourrate`
DROP TABLE IF EXISTS `hourrate`;
CREATE TABLE `hourrate` (
`date` date NOT NULL,
`price` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;