Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Application web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Agroclim
AgroMetInfo
Application web
Merge requests
!92
Resolve "Ajouter un compteur de visites"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Ajouter un compteur de visites"
89-ajouter-un-compteur-de-visites
into
main
Overview
0
Commits
2
Pipelines
3
Changes
9
Merged
Olivier Maury
requested to merge
89-ajouter-un-compteur-de-visites
into
main
10 months ago
Overview
0
Commits
2
Pipelines
3
Changes
9
Expand
Closes
#89 (closed)
0
0
Merge request reports
Compare
main
version 1
07c7c299
10 months ago
main (base)
and
latest version
latest version
07ef976a
2 commits,
10 months ago
version 1
07c7c299
1 commit,
10 months ago
9 files
+
195
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
sql/schema.tables.sql
+
10
−
0
Options
@@ -203,6 +203,16 @@ COMMENT ON COLUMN dailyvalue.computedvalue IS 'Value of the indicator.';
COMMENT
ON
COLUMN
dailyvalue
.
comparedvalue
IS
'Value of the indicator compared to the normal.'
;
CREATE
INDEX
IF
NOT
EXISTS
"IX_dailyvalue"
ON
dailyvalue
USING
btree
(
date
,
cell
);
CREATE
TABLE
IF
NOT
EXISTS
dailyvisit
(
id
SERIAL
,
date
DATE
NOT
NULL
,
environment
VARCHAR
NOT
NULL
,
number
INTEGER
NOT
NULL
,
CONSTRAINT
"PK_dailyvisit"
PRIMARY
KEY
(
id
),
CONSTRAINT
"UK_dailyvisit"
UNIQUE
(
date
,
environment
)
);
COMMENT
ON
TABLE
dailyvisit
IS
'Number of visits per day.'
;
CREATE
OR
REPLACE
VIEW
v_i18n
AS
SELECT
l
.
languagetag
,
i
.
i18nkey
,
Loading