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
f24ef419
Commit
f24ef419
authored
12 years ago
by
Giovannoni Laurent
Browse files
Options
Downloads
Patches
Plain Diff
evo:
#301
enlarge user_id to 128
parent
fe24c271
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/trunk/core/sql/structure/core.postgresql.sql
+6
-6
6 additions, 6 deletions
core/trunk/core/sql/structure/core.postgresql.sql
core/trunk/structure.sql
+268
-40
268 additions, 40 deletions
core/trunk/structure.sql
with
274 additions
and
46 deletions
core/trunk/core/sql/structure/core.postgresql.sql
+
6
−
6
View file @
f24ef419
...
...
@@ -30,7 +30,7 @@ CREATE TABLE actions
action_page
character
varying
(
255
),
history
character
(
1
)
NOT
NULL
DEFAULT
'N'
::
bpchar
,
origin
character
varying
(
255
)
NOT
NULL
DEFAULT
'apps'
::
bpchar
,
create_id
character
(
1
)
NOT
NULL
DEFAULT
'N'
::
bpchar
,
create_id
character
(
1
)
NOT
NULL
DEFAULT
'N'
::
bpchar
,
CONSTRAINT
actions_pkey
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
...
...
@@ -144,7 +144,7 @@ CREATE TABLE history
table_name
character
varying
(
32
)
DEFAULT
NULL
::
character
varying
,
record_id
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
event_type
character
varying
(
32
)
NOT
NULL
,
user_id
character
varying
(
50
)
NOT
NULL
,
user_id
character
varying
(
128
)
NOT
NULL
,
event_date
timestamp
without
time
zone
NOT
NULL
,
info
text
,
id_module
character
varying
(
50
)
NOT
NULL
DEFAULT
'admin'
::
character
varying
,
...
...
@@ -176,8 +176,8 @@ WITH (OIDS=FALSE);
CREATE
TABLE
parameters
(
id
character
varying
(
25
5
)
NOT
NULL
,
param_value_string
character
varying
(
25
5
)
DEFAULT
NULL
::
character
varying
,
id
character
varying
(
5
0
)
NOT
NULL
,
param_value_string
character
varying
(
5
0
)
DEFAULT
NULL
::
character
varying
,
param_value_int
integer
,
param_value_date
timestamp
without
time
zone
,
CONSTRAINT
parameters_pkey
PRIMARY
KEY
(
id
)
...
...
@@ -244,7 +244,7 @@ WITH (OIDS=FALSE);
CREATE
TABLE
usergroup_content
(
user_id
character
varying
(
32
)
NOT
NULL
,
user_id
character
varying
(
128
)
NOT
NULL
,
group_id
character
varying
(
32
)
NOT
NULL
,
primary_group
character
(
1
)
NOT
NULL
,
"role"
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
...
...
@@ -276,7 +276,7 @@ WITH (OIDS=FALSE);
CREATE
TABLE
users
(
user_id
character
varying
(
32
)
NOT
NULL
,
user_id
character
varying
(
128
)
NOT
NULL
,
"password"
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
firstname
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
lastname
character
varying
(
255
)
DEFAULT
NULL
::
character
varying
,
...
...
This diff is collapsed.
Click to expand it.
core/trunk/structure.sql
+
268
−
40
View file @
f24ef419
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