Created
February 23, 2022 21:46
-
-
Save kclay/de9b79b793b8ca73d89ff828534eee06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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