feat: deploy infrastructure + disk/drive, calendar, presentation, workspaces, onboarding, demo user
This commit is contained in:
@@ -36,5 +36,10 @@ class Idea(SQLBase, UUIDMixin, TimestampMixin):
|
||||
public_slug: Mapped[Optional[str]] = mapped_column(
|
||||
String(64), unique=True, nullable=True, index=True
|
||||
)
|
||||
funnel_status: Mapped[Optional[str]] = mapped_column(
|
||||
String(20), nullable=True, default=None, index=True
|
||||
)
|
||||
|
||||
FUNNEL_STATES = ["raw", "validated", "backlog", "in_progress", "launched", "retrospective"]
|
||||
|
||||
user = relationship("User", back_populates="ideas", lazy="selectin")
|
||||
|
||||
Reference in New Issue
Block a user