Add project files.
This commit is contained in:
7
EmployeeDb/Tables/Employee.sql
Normal file
7
EmployeeDb/Tables/Employee.sql
Normal file
@ -0,0 +1,7 @@
|
||||
CREATE TABLE [dbo].[Employee]
|
||||
(
|
||||
[Id] INT NOT NULL PRIMARY KEY Identity(1,1),
|
||||
[FirstName] NVARCHAR(50) NOT NULL,
|
||||
[LastName] NVARCHAR(50) NOT NULL,
|
||||
[Title] NVARCHAR(50) NOT NULL,
|
||||
)
|
||||
Reference in New Issue
Block a user