1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| /*==============================================================*/
/* Table: "credit" */
/*==============================================================*/
create table "credit"
(
"code_credit" VARCHAR2(254) not null,
"code_client" INTEGER not null,
"code_banque" VARCHAR2(254) not null,
"code_ref" INTEGER not null,
"date_deblocage" DATE,
"date_echeance" DATE,
"montant_initial" INTEGER,
"etat" VARCHAR2(254),
"forme" VARCHAR2(254),
"flag_gar" SMALLINT,
"date_encours" DATE,
"montant_encours" INTEGER,
constraint PK_CREDIT primary key ("code_credit")
);
/* Table: "garantie_credit" */
/*==============================================================*/
create table "garantie_credit"
(
"code_credit" VARCHAR2(254) not null,
"id_operation" VARCHAR2(254) not null,
"Date_mise_en_garantie" DATE,
constraint PK_GARANTIE_CREDIT primary key ("code_credit")
); |