Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
skeleton-application
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lib
unicaen
skeleton-application
Commits
1d4c5c56
Commit
1d4c5c56
authored
3 years ago
by
Bertrand Gauthier
Browse files
Options
Downloads
Patches
Plain Diff
Script de création de la bdd exemple : ajout de la colonne last_role_id manquant dans USER.
parent
286d1449
No related branches found
No related tags found
1 merge request
!2
Script de création de la bdd exemple : ajout de la colonne last_role_id manquant dans USER.
Pipeline
#15222
passed
3 years ago
Stage: publish
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/db/1-schema.sql
+2
-1
2 additions, 1 deletion
docker/db/1-schema.sql
with
2 additions
and
1 deletion
docker/db/1-schema.sql
+
2
−
1
View file @
1d4c5c56
...
...
@@ -4,7 +4,8 @@ CREATE TABLE "user" (
email
VARCHAR
(
255
)
DEFAULT
NULL
,
display_name
VARCHAR
(
64
)
DEFAULT
NULL
,
password
VARCHAR
(
128
)
NOT
NULL
,
state
SMALLINT
default
1
state
SMALLINT
default
1
,
last_role_id
SMALLINT
)
;
CREATE
UNIQUE
INDEX
user_username_unique
ON
"user"
(
username
);
...
...
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