You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury/src/sql/create-timeentry-table.sql

21 lines
770 B
SQL

DROP TABLE IF EXISTS insight.timeentry;
CREATE TABLE insight.timeentry
(
ActualHours REAL,
ActualHoursFormattedString varchar(30),
ActualTimeString VARCHAR(30),
ActualTotal REAL,
BillableHours REAL,
BillableHoursFormattedString VARCHAR(30),
BillableTimeString VARCHAR(30),
BillableTotal REAL,
Date VARCHAR(30),
Description VARCHAR(255),
ProjectId VARCHAR(50),
RateBill REAL,
RateBurden REAL,
TaskId VARCHAR(50),
TimeSheetId VARCHAR(50),
UserId VARCHAR(50)
);