Skip to content

Commit

Permalink
add some column comments to the migration
Browse files Browse the repository at this point in the history
  • Loading branch information
frankhereford committed May 9, 2024
1 parent b9ce5eb commit e2ca36e
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,10 @@ CREATE TABLE cris_import_log (
records_processed JSONB DEFAULT '{}',
outcome_status TEXT NULL
);

COMMENT ON COLUMN cris_import_log.outcome_status IS 'This is a brief, textual indication of what the outcome was.';
COMMENT ON COLUMN cris_import_log.records_processed IS 'A JSON blob that contains counts or a list of crashes imported per schema';
COMMENT ON COLUMN cris_import_log.object_path IS 'The location within the bucket where the extract was found';
COMMENT ON COLUMN cris_import_log.object_name IS 'The name of the object (file) within the bucket';
COMMENT ON COLUMN cris_import_log.created_at IS 'Audit field for when the import started';
COMMENT ON COLUMN cris_import_log.completed_at IS 'Audit field for when the import finished';

0 comments on commit e2ca36e

Please sign in to comment.