Skip to content

Instantly share code, notes, and snippets.

@kclay
Created February 23, 2022 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kclay/de9b79b793b8ca73d89ff828534eee06 to your computer and use it in GitHub Desktop.
Save kclay/de9b79b793b8ca73d89ff828534eee06 to your computer and use it in GitHub Desktop.
create table report_witnesses_statements
(
id UNIQUEIDENTIFIER DEFAULT newid(),
created_at timestamp,
name varchar(255),
report_witness_id UNIQUEIDENTIFIER,
size TINYINT,
CONSTRAINT PK_report_witnesses_statements_id PRIMARY KEY CLUSTERED (id),
CONSTRAINT FK_report_witnesses_statements_report_witness FOREIGN KEY (report_witness_id)
REFERENCES report_witnesses (id)
);
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment