Last active
June 8, 2020 13:31
-
-
Save zachjharris/66f7741d478575d420137b672a201c01 to your computer and use it in GitHub Desktop.
Table for storing scanned surveys
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 surveys ( | |
[id] int not null identity, | |
[first_name] nvarchar(255), | |
[last_name] nvarchar(255), | |
[division] nvarchar(255), | |
[datetime] datetime, | |
[ryg_status] nvarchar(255), | |
[employee_id] nvarchar(255), | |
[badge_number] nvarchar(255), | |
[employee_type] nvarchar(255), | |
[access_code] nvarchar(255), | |
[scanned_datetime] datetime, | |
PRIMARY KEY( [id] ) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment