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
169fdb01
Unverified
Commit
169fdb01
authored
2 years ago
by
Tushar
Committed by
GitHub
2 years ago
Browse files
Options
Download
Patches
Plain Diff
Create Master_user.sql
parent
ec9b60f1
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Master_user.sql
+29
-0
Master_user.sql
with
29 additions
and
0 deletions
+29
-0
Master_user.sql
0 → 100644
+
29
−
0
View file @
169fdb01
-- upsmfac_casa.dbo.Master_User definition
-- Drop table
-- DROP TABLE upsmfac_casa.dbo.Master_User;
CREATE
TABLE
upsmfac_casa
.
dbo
.
Master_User
(
UserKey
smallint
IDENTITY
(
1
,
1
)
NOT
NULL
,
Code
varchar
(
5
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
Username
varchar
(
100
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NOT
NULL
,
UserType
smallint
NULL
,
Password
nvarchar
(
100
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NOT
NULL
,
PasswordIsModified
bit
NULL
,
Name
varchar
(
500
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
Address
nvarchar
(
500
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
City
nvarchar
(
100
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
ContactPerson
varchar
(
50
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
ContactNo
varchar
(
50
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
EmailId
varchar
(
75
)
COLLATE
SQL_Latin1_General_CP1_CI_AS
NULL
,
IsActive
bit
NULL
,
CreatedBy
int
NULL
,
CreatedOn
datetime
NULL
,
LastModifiedBy
int
NULL
,
LastModifiedOn
datetime
NULL
,
CONSTRAINT
PK_Master_User
PRIMARY
KEY
(
UserKey
)
);
CREATE
NONCLUSTERED
INDEX
IX_Master_User
ON
dbo
.
Master_User
(
Username
ASC
,
Password
ASC
)
WITH
(
PAD_INDEX
=
OFF
,
FILLFACTOR
=
100
,
SORT_IN_TEMPDB
=
OFF
,
IGNORE_DUP_KEY
=
OFF
,
STATISTICS_NORECOMPUTE
=
OFF
,
ONLINE
=
OFF
,
ALLOW_ROW_LOCKS
=
ON
,
ALLOW_PAGE_LOCKS
=
ON
)
ON
[
PRIMARY
]
;
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