Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
indicateur
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
indicateur
Commits
381c80e5
Commit
381c80e5
authored
1 year ago
by
Jean-Philippe Metivier
Browse files
Options
Downloads
Patches
Plain Diff
MAJ SQL
parent
1f7fc092
No related branches found
No related tags found
No related merge requests found
Pipeline
#27396
passed
1 year ago
Stage: publish
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
documentation/01_table.sql
+30
-5
30 additions, 5 deletions
documentation/01_table.sql
with
30 additions
and
5 deletions
documentation/01_table.sql
+
30
−
5
View file @
381c80e5
create
table
unicaen_indicateur_categorie
(
id
serial
constraint
unicaen_indicateur_categorie_pk
primary
key
,
code
varchar
(
256
)
constraint
unicaen_indicateur_categorie_pk_2
unique
,
libelle
varchar
(
1024
)
not
null
,
ordre
integer
default
9999
not
null
,
description
text
);
s
create
table
unicaen_indicateur_indicateur
(
id
serial
constraint
indicateur_pk
primary
key
,
id
serial
constraint
indicateur_pk
primary
key
,
titre
varchar
(
256
)
not
null
,
description
varchar
(
2048
),
namespace
varchar
(
256
),
requete
varchar
(
4096
)
not
null
,
dernier_rafraichissement
timestamp
,
view_id
varchar
(
256
),
entity
varchar
(
256
),
namespace
varchar
(
1024
)
namespace
varchar
(
1024
),
code
varchar
(
256
)
constraint
unicaen_indicateur_indicateur_pk
unique
,
nb_elements
integer
,
categorie_id
integer
constraint
uii_unicaen_indicateur_categorie_id_fk
references
unicaen_indicateur_categorie
);
create
unique
index
indicateur_id_uindex
on
unicaen_indicateur_indicateur
(
id
);
create
table
unicaen_indicateur_abonnement
(
...
...
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