mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-04 19:09:49 +00:00
3 lines
146 B
SQL
3 lines
146 B
SQL
ALTER TABLE artifact ADD COLUMN time_created INTEGER NOT NULL DEFAULT 0;
|
|
|
|
UPDATE artifact SET time_created = time_updated WHERE time_created = 0;
|