app

Local-first trade for farms and co-ops
git clone https://radroots.dev/git/app.git
Log | Files | Refs | README | LICENSE

0022_order_workflow_revision.sql (182B)


      1 ALTER TABLE orders
      2     ADD COLUMN workflow_revision TEXT NOT NULL DEFAULT 'none' CHECK (
      3         workflow_revision IN ('none', 'change_proposed', 'updated', 'kept_as_placed')
      4     );