Skip to content

Commit

Permalink
feat: adding unique project id to the project table
Browse files Browse the repository at this point in the history
  • Loading branch information
pbastia committed Dec 3, 2021
1 parent 11e5646 commit b09fbd9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions schema/deploy/tables/project.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ create table cif.project(
cif_identifier integer unique not null,
description varchar(10000) not null,
funding_stream_id integer not null references cif.funding_stream(id)
unique_project_id varchar(1000) not null unique
);

select cif_private.upsert_timestamp_columns('cif', 'project');
Expand Down

0 comments on commit b09fbd9

Please sign in to comment.