fp/services/migrations/migrations/00006_add-updated-at-to-records.sql
2024-08-16 18:42:44 -08:00

5 lines
180 B
SQL

ALTER TABLE IF EXISTS api.records
ADD COLUMN created_at timestamp(6) without time zone;
ALTER TABLE IF EXISTS api.records
ADD COLUMN updated_at timestamp(6) without time zone;