Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend_api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Package registry
Container registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
videoag
backend_api
Merge requests
!6
Feedback page & Misc
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Feedback page & Misc
master
into
live_production
Overview
0
Commits
3
Pipelines
1
Changes
11
Merged
Feedback page & Misc
Simon Künzel
requested to merge
master
into
live_production
Jun 19, 2024
Overview
0
Commits
3
Pipelines
1
Changes
11
0
0
Merge request reports
Compare
live_production
live_production (base)
and
latest version
latest version
eae2e25f
3 commits,
Jun 19, 2024
11 files
+
353
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
config/db_schema_postgres.sql
+
7
−
0
View file @ eae2e25f
Edit in single-file editor
Open in Web IDE
Show full file
@@ -410,6 +410,13 @@ CREATE TABLE IF NOT EXISTS "responsible" (
);
-- TODO info: this had collation latin1_swedish_ci
CREATE
UNIQUE
INDEX
IF
NOT
EXISTS
"responsible_course_id_user_id_index"
ON
"responsible"
(
"course_id"
,
"user_id"
);
CREATE
TABLE
IF
NOT
EXISTS
"feedback"
(
"id"
serial
NOT
NULL
,
"time_created"
timestamp
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
"email"
character
varying
(
128
)
DEFAULT
NULL
,
"text"
text
COLLATE
"pg_catalog"
.
"und-x-icu"
NOT
NULL
,
CONSTRAINT
"feedback_pkey"
PRIMARY
KEY
(
"id"
)
);
CREATE
VIEW
"courses"
AS
SELECT
*
Loading