Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
8d1767de
Commit
8d1767de
authored
10 years ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
Erasing non-schema statement
parent
66263785
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sda2/P/UnixSqlLdap/Jndi/usermanage/Schema/schema.sql
+1
-3
1 addition, 3 deletions
Sda2/P/UnixSqlLdap/Jndi/usermanage/Schema/schema.sql
with
1 addition
and
3 deletions
Sda2/P/UnixSqlLdap/Jndi/usermanage/Schema/schema.sql
+
1
−
3
View file @
8d1767de
...
@@ -8,8 +8,6 @@ CREATE TABLE SysGroup ( -- The system's groups --
...
@@ -8,8 +8,6 @@ CREATE TABLE SysGroup ( -- The system's groups --
,
gidNumber
INTEGER
NOT
NULL
UNIQUE
-- The groups unique numerical value e.g. 1332 --
,
gidNumber
INTEGER
NOT
NULL
UNIQUE
-- The groups unique numerical value e.g. 1332 --
);
);
UPDATE
SysGroup
SET
id
=
20
WHERE
id
=
2
;
CREATE
TABLE
SysUser
(
CREATE
TABLE
SysUser
(
id
INTEGER
AUTO_INCREMENT
PRIMARY
KEY
id
INTEGER
AUTO_INCREMENT
PRIMARY
KEY
,
uid
CHAR
(
20
)
NOT
NULL
UNIQUE
-- The user's unique login name e.g. 'goik' --
,
uid
CHAR
(
20
)
NOT
NULL
UNIQUE
-- The user's unique login name e.g. 'goik' --
...
@@ -25,5 +23,5 @@ CREATE TABLE SysUserGroup (
...
@@ -25,5 +23,5 @@ CREATE TABLE SysUserGroup (
sysuser
INTEGER
NOT
NULL
REFERENCES
SysUser
sysuser
INTEGER
NOT
NULL
REFERENCES
SysUser
,
sysgroup
INTEGER
NOT
NULL
REFERENCES
SysGroup
,
sysgroup
INTEGER
NOT
NULL
REFERENCES
SysGroup
,
PRIMARY
KEY
(
sysuser
,
sysgroup
)
,
PRIMARY
KEY
(
sysuser
,
sysgroup
)
)
)
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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