Skip to content

Commit

Permalink
Merge pull request #310 from lsst/tickets/DM-48979
Browse files Browse the repository at this point in the history
DM-48979: Added api_created field to tap_schema.schemas table definition
  • Loading branch information
stvoutsin authored Feb 19, 2025
2 parents 6c245a1 + e70d570 commit 187401a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tap-schema/sql/0000_tap_schema11.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ create table tap_schema.schemas11
read_only_group varchar(128),
read_write_group varchar(128),

-- extension: flag to indicate if a schema was created using a Tap service API
api_created integer,

primary key (schema_name)
)
;
Expand All @@ -38,6 +41,9 @@ create table tap_schema.schemas
read_only_group varchar(128),
read_write_group varchar(128),

-- extension: flag to indicate if a schema was created using a Tap service API
api_created integer,

primary key (schema_name)
)
;
Expand Down

0 comments on commit 187401a

Please sign in to comment.