diff options
| author | soryu <soryu@soryu.co> | 2026-03-02 15:18:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-02 15:18:31 +0000 |
| commit | 78cb861412850889424ae7d5ae5cd952a2b90295 (patch) | |
| tree | 7a6eb0693457886dbe0eea84c0c1489724791f79 /makima/migrations | |
| parent | 2bc1cd4717b587cd2b8ffccd723b62f888e61aa8 (diff) | |
| download | soryu-78cb861412850889424ae7d5ae5cd952a2b90295.tar.gz soryu-78cb861412850889424ae7d5ae5cd952a2b90295.zip | |
feat: move daemon reauth to daemons page, add contract-backed directive steps, rename Mesh to Exec (#84)
* feat: soryu-co/soryu - makima: Rename Mesh to Exec in navigation
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
* feat: soryu-co/soryu - makima: Add contract-backed steps to directive flow
* WIP: heartbeat checkpoint
Diffstat (limited to 'makima/migrations')
| -rw-r--r-- | makima/migrations/20260302000000_add_contract_to_directive_steps.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/makima/migrations/20260302000000_add_contract_to_directive_steps.sql b/makima/migrations/20260302000000_add_contract_to_directive_steps.sql new file mode 100644 index 0000000..f018aa4 --- /dev/null +++ b/makima/migrations/20260302000000_add_contract_to_directive_steps.sql @@ -0,0 +1,4 @@ +-- Add contract_id to directive_steps for contract-backed execution +ALTER TABLE directive_steps ADD COLUMN contract_id UUID REFERENCES contracts(id); +-- Add contract_type to specify what kind of contract to create +ALTER TABLE directive_steps ADD COLUMN contract_type VARCHAR(32); |
