Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
0800d212
Verified
Commit
0800d212
authored
6 years ago
by
Damien
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #7659 Structure sql
parent
7ed721ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sql/structure.sql
+10
-0
10 additions, 0 deletions
sql/structure.sql
with
10 additions
and
0 deletions
sql/structure.sql
+
10
−
0
View file @
0800d212
...
@@ -231,6 +231,8 @@ CREATE TABLE users
...
@@ -231,6 +231,8 @@ CREATE TABLE users
loginmode
character
varying
(
50
)
DEFAULT
NULL
::
character
varying
,
loginmode
character
varying
(
50
)
DEFAULT
NULL
::
character
varying
,
cookie_key
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
cookie_key
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
cookie_date
timestamp
without
time
zone
,
cookie_date
timestamp
without
time
zone
,
failed_authentication
INTEGER
DEFAULT
0
,
locked_until
TIMESTAMP
without
time
zone
,
thumbprint
text
DEFAULT
NULL
::
character
varying
,
thumbprint
text
DEFAULT
NULL
::
character
varying
,
CONSTRAINT
users_pkey
PRIMARY
KEY
(
user_id
),
CONSTRAINT
users_pkey
PRIMARY
KEY
(
user_id
),
CONSTRAINT
users_id_key
UNIQUE
(
id
)
CONSTRAINT
users_id_key
UNIQUE
(
id
)
...
@@ -2205,4 +2207,12 @@ CREATE TABLE password_rules
...
@@ -2205,4 +2207,12 @@ CREATE TABLE password_rules
)
)
WITH
(
OIDS
=
FALSE
);
WITH
(
OIDS
=
FALSE
);
CREATE
TABLE
password_history
(
id
serial
,
user_serial_id
INTEGER
NOT
NULL
,
password
character
varying
(
255
)
NOT
NULL
,
CONSTRAINT
password_history_pkey
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
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