mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 22:40:22 +00:00
feat: compact command with auto-compact
This commit is contained in:
parent
364cf5b429
commit
49423da081
16 changed files with 507 additions and 73 deletions
|
|
@ -0,0 +1,11 @@
|
|||
-- +goose Up
|
||||
-- +goose StatementBegin
|
||||
ALTER TABLE sessions ADD COLUMN summary TEXT;
|
||||
ALTER TABLE sessions ADD COLUMN summarized_at INTEGER;
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose Down
|
||||
-- +goose StatementBegin
|
||||
ALTER TABLE sessions DROP COLUMN summarized_at;
|
||||
ALTER TABLE sessions DROP COLUMN summary;
|
||||
-- +goose StatementEnd
|
||||
Loading…
Add table
Add a link
Reference in a new issue