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
d8030bde
Verified
Commit
d8030bde
authored
5 years ago
by
Damien
Browse files
Options
Downloads
Patches
Plain Diff
FIx structure.sql
parent
6413457f
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
+11
-12
11 additions, 12 deletions
sql/structure.sql
with
11 additions
and
12 deletions
sql/structure.sql
+
11
−
12
View file @
d8030bde
...
...
@@ -1883,7 +1883,17 @@ CONSTRAINT acknowledgment_receipts_pkey PRIMARY KEY (id)
)
WITH
(
OIDS
=
FALSE
);
DROP
TABLE
IF
EXISTS
indexing_models
;
CREATE
TABLE
custom_fields
(
id
serial
NOT
NULL
,
label
character
varying
(
256
)
NOT
NULL
,
type
character
varying
(
256
)
NOT
NULL
,
values
jsonb
,
CONSTRAINT
custom_fields_pkey
PRIMARY
KEY
(
id
),
CONSTRAINT
custom_fields_unique_key
UNIQUE
(
label
)
)
WITH
(
OIDS
=
FALSE
);
CREATE
TABLE
indexing_models
(
id
SERIAL
NOT
NULL
,
...
...
@@ -1897,17 +1907,6 @@ CREATE TABLE indexing_models
)
WITH
(
OIDS
=
FALSE
);
CREATE
TABLE
indexing_models
(
id
SERIAL
NOT
NULL
,
label
character
varying
(
256
)
NOT
NULL
,
"default"
BOOLEAN
NOT
NULL
,
owner
INTEGER
NOT
NULL
,
private
BOOLEAN
NOT
NULL
,
CONSTRAINT
indexing_models_pkey
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
CREATE
TABLE
indexing_models_fields
(
id
SERIAL
NOT
NULL
,
...
...
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