Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table dept_fr_ref
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
iddept |
serial |
|
nextval('dept_fr_ref_iddept_seq'::regclass) |
|
|||
|
|
nom_dept |
varchar(80) |
|
|
|
||
|
|
num_dept |
varchar(3) |
|
|
|
|
Foreign Keys
There are no foreign keys for table dept_fr_ref
Check Constraints
There are no check constraints for table dept_fr_ref
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
nom_dept |
|
|
||
btree |
|
num_dept |
|
|
||
btree |
|
iddept |
|
Triggers
There are no triggers for table dept_fr_ref
Rules
There are no rules for table dept_fr_ref
Policies
There are no policies for table dept_fr_ref
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
iddept |
iddept |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
97 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.dept_fr_ref (
iddept SERIAL,
nom_dept VARCHAR(80) NOT NULL,
num_dept VARCHAR(3),
CONSTRAINT dept_fr_ref_nom_dept_key UNIQUE(nom_dept),
CONSTRAINT dept_fr_ref_num_dept_key UNIQUE(num_dept),
CONSTRAINT pk_dept_fr_ref PRIMARY KEY(iddept)
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |