mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
5 lines
207 B
SQL
5 lines
207 B
SQL
ALTER TABLE bugs ADD COLUMN occurred_at INTEGER;
|
|
|
|
-- Existing reports predate this field; their receipt time is the best available value.
|
|
UPDATE bugs SET occurred_at = received_at WHERE occurred_at IS NULL;
|