Add true up review status history, add migration for persisting history, add store to create, get, and update true up review history entries, cleanup errors, etc.
Этот коммит содержится в:
@@ -400,3 +400,5 @@ db/migrations/postgres/000099_create_drafts.down.sql
|
||||
db/migrations/postgres/000099_create_drafts.up.sql
|
||||
db/migrations/postgres/000100_add_draft_priority_column.down.sql
|
||||
db/migrations/postgres/000100_add_draft_priority_column.up.sql
|
||||
db/migrations/postgres/000101_create_true_up_review_history.down.sql
|
||||
db/migrations/postgres/000101_create_true_up_review_history.up.sql
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS trueupreviewhistory;
|
||||
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE IF NOT EXISTS trueupreviewhistory (
|
||||
duedate VARCHAR(10),
|
||||
completed boolean,
|
||||
PRIMARY KEY (duedate)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
@@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS trueupreviewhistory;
|
||||
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE IF NOT EXISTS trueupreviewhistory (
|
||||
duedate VARCHAR(10),
|
||||
completed boolean,
|
||||
PRIMARY KEY (duedate)
|
||||
);
|
||||
Ссылка в новой задаче
Block a user