Schema
Owner
cefs
Tablespace
(default)
Descriptions
Table des modèles d'quipement. Chaque équipement peut être associé à un modèle
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
mod_id |
serial |
|
nextval('tr_eqtmodel_mod_mod_id_seq'::regclass) |
Identifiant automatique d'un modèle d'équipement |
|||
|
|
mod_libelle |
varchar(32) |
|
|
Libellé du modèle d'equipement |
Foreign Keys
There are no foreign keys for table tr_eqtmodel_mod
Check Constraints
There are no check constraints for table tr_eqtmodel_mod
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
mod_libelle |
|
|
||
btree |
|
mod_id |
|
Triggers
There are no triggers for table tr_eqtmodel_mod
Rules
There are no rules for table tr_eqtmodel_mod
Policies
There are no policies for table tr_eqtmodel_mod
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
eqt_mod_id |
mod_id |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
5 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_eqtmodel_mod (
mod_id SERIAL,
mod_libelle VARCHAR(32) NOT NULL,
CONSTRAINT c_uni_mod_libelle UNIQUE(mod_libelle),
CONSTRAINT eqtmodel_mod_pkey PRIMARY KEY(mod_id)
)
WITH (oids = false);
COMMENT ON TABLE public.tr_eqtmodel_mod
IS 'Table des modèles d''quipement. Chaque équipement peut être associé à un modèle';
COMMENT ON COLUMN public.tr_eqtmodel_mod.mod_id
IS 'Identifiant automatique d''un modèle d''équipement';
COMMENT ON COLUMN public.tr_eqtmodel_mod.mod_libelle
IS 'Libellé du modèle d''equipement';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |