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