mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 10:45:33 -04:00
4 lines
146 B
SQL
4 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;
|