File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Table refactor_platform.overarching_goals {
48
48
coaching_session_id uuid [note: 'The coaching session that an overarching goal is associated with']
49
49
title varchar [note: 'A short description of an overarching goal']
50
50
body varchar [note: 'Main text of the overarching goal supporting Markdown']
51
- status status [not null]
51
+ status refactor_platform. status [not null]
52
52
status_changed_at timestamptz
53
53
completed_at timestamptz [note: 'The date and time an overarching goal was completed']
54
54
created_at timestamptz [not null, default: `now()`]
@@ -82,13 +82,13 @@ Table refactor_platform.actions {
82
82
body varchar [note: 'Main text of the action supporting Markdown']
83
83
user_id uuid [not null, note: 'User that created (owns) the action']
84
84
due_by timestamptz
85
- status status [not null]
85
+ status refactor_platform. status [not null]
86
86
status_changed_at timestamptz [not null, default: `now()`]
87
87
created_at timestamptz [not null, default: `now()`]
88
88
updated_at timestamptz [not null, default: `now()`]
89
89
}
90
90
91
- enum status {
91
+ enum refactor_platform. status {
92
92
not_started
93
93
in_progress
94
94
completed
Original file line number Diff line number Diff line change 1
1
-- SQL dump generated using DBML (dbml-lang.org)
2
2
-- Database: PostgreSQL
3
- -- Generated at: 2024-12-09T16:59:54.815Z
3
+ -- Generated at: 2024-12-16T05:18:20.372Z
4
4
5
5
6
- CREATE TYPE "status " AS ENUM (
6
+ CREATE TYPE "refactor_platform ". " status" AS ENUM (
7
7
' not_started' ,
8
8
' in_progress' ,
9
9
' completed' ,
@@ -55,7 +55,7 @@ CREATE TABLE "refactor_platform"."overarching_goals" (
55
55
" coaching_session_id" uuid,
56
56
" title" varchar ,
57
57
" body" varchar ,
58
- " status" status NOT NULL ,
58
+ " status" refactor_platform . status NOT NULL ,
59
59
" status_changed_at" timestamptz ,
60
60
" completed_at" timestamptz ,
61
61
" created_at" timestamptz NOT NULL DEFAULT (now()),
@@ -86,7 +86,7 @@ CREATE TABLE "refactor_platform"."actions" (
86
86
" body" varchar ,
87
87
" user_id" uuid NOT NULL ,
88
88
" due_by" timestamptz ,
89
- " status" status NOT NULL ,
89
+ " status" refactor_platform . status NOT NULL ,
90
90
" status_changed_at" timestamptz NOT NULL DEFAULT (now()),
91
91
" created_at" timestamptz NOT NULL DEFAULT (now()),
92
92
" updated_at" timestamptz NOT NULL DEFAULT (now())
You can’t perform that action at this time.
0 commit comments