Event Timeline
Comment Actions
FTR:
fullset=# \d C_R
Table « public.c_r »
Colonne | Type | Collationnement | NULL-able | Par défaut
---------+----------+-----------------+-----------+------------
cnt | bigint | | not null |
revs | bigint[] | | |
locs | bigint[] | | |
Index :
"c_r_cnt_idx" btree (cnt)
fullset=# \d C_D
Table « public.c_d »
Colonne | Type | Collationnement | NULL-able | Par défaut
---------+----------+-----------------+-----------+------------
cnt | bigint | | not null |
dirs | bigint[] | | |
locs | bigint[] | | |
Index :
"c_d_cnt_idx" btree (cnt)
fullset=# \d D_R
Table « public.d_r »
Colonne | Type | Collationnement | NULL-able | Par défaut
---------+----------+-----------------+-----------+------------
dir | bigint | | not null |
revs | bigint[] | | |
locs | bigint[] | | |
Index :
"d_r_dir_idx" btree (dir)Comment Actions
and:
fullset=# \d revision
Table « public.revision »
Colonne | Type | Collationnement | NULL-able | Par défaut
---------+--------------------------+-----------------+-----------+--------------------------------------
id | bigint | | not null | nextval('revision_id_seq'::regclass)
sha1 | sha1_git | | not null |
date | timestamp with time zone | | not null |
org | bigint | | |
Index :
"revision_pkey" PRIMARY KEY, btree (id)
"revision_sha1_key" UNIQUE CONSTRAINT, btree (sha1)
fullset=# \d content
Table « public.content »
Colonne | Type | Collationnement | NULL-able | Par défaut
---------+--------------------------+-----------------+-----------+-------------------------------------
id | bigint | | not null | nextval('content_id_seq'::regclass)
sha1 | sha1_git | | not null |
date | timestamp with time zone | | not null |
Index :
"content_pkey" PRIMARY KEY, btree (id)
"content_sha1_key" UNIQUE CONSTRAINT, btree (sha1)
fullset=# \d directory
Table « public.directory »
Colonne | Type | Collationnement | NULL-able | Par défaut
---------+--------------------------+-----------------+-----------+---------------------------------------
id | bigint | | not null | nextval('directory_id_seq'::regclass)
sha1 | sha1_git | | not null |
date | timestamp with time zone | | not null |
Index :
"directory_pkey" PRIMARY KEY, btree (id)
"directory_sha1_key" UNIQUE CONSTRAINT, btree (sha1)