-
Notifications
You must be signed in to change notification settings - Fork 80
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Currently a Postgres enum column shows, eg:
# state :enum default("creating"), not null
The actual schema contains:
t.enum "state", default: "creating", null: false, enum_type: "states"
create_enum :states, [
"creating",
"deploying",
"completed",
"failed",
"superseded",
], force: :cascade
Which is more useful information for the developer.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed