Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-CASAMockSchema
Commits
ed046716
Unverified
Commit
ed046716
authored
2 years ago
by
Tushar
Committed by
GitHub
2 years ago
Browse files
Options
Download
Patches
Plain Diff
Create Master_Tutor_Basic_Info.sql
parent
169fdb01
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Master_Tutor_Basic_Info.sql
+19
-0
Master_Tutor_Basic_Info.sql
with
19 additions
and
0 deletions
+19
-0
Master_Tutor_Basic_Info.sql
0 → 100644
+
19
−
0
View file @
ed046716
-- upsmfac_casa.dbo.Master_Tutor_Basic_Info definition
-- Drop table
-- DROP TABLE upsmfac_casa.dbo.Master_Tutor_Basic_Info;
CREATE
TABLE
upsmfac_casa
.
dbo
.
Master_Tutor_Basic_Info
(
TutorKey
int
IDENTITY
(
1
,
1
)
NOT
NULL
,
CenterKey
smallint
NOT
NULL
,
TutorName
varchar
(
200
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NOT
NULL
,
Qualification
varchar
(
300
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
ContactDetails
varchar
(
200
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
AadhaarNo
varchar
(
50
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
CreatedBy
int
NULL
,
CreatedOn
datetime
NULL
,
LastModifiedBy
int
NULL
,
LastModifiedOn
datetime
NULL
,
CONSTRAINT
PK_Master_Tutor_Basic_Info
PRIMARY
KEY
(
TutorKey
)
);
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets