This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bakımda |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//birbiriyle konuşan birden fazla sistem olduğu için tüm sistemlerde ilce_id ler aynı olsun istendi | |
/* | |
create table ilce (ilce_id integer not null, | |
plaka_kod integer not null, | |
ilce_adi character varying(50) not null, | |
version_no integer NOT NULL DEFAULT 1, | |
insert_user_id integer NOT NULL DEFAULT 1, | |
insert_dttm timestamp with time zone NOT NULL DEFAULT ('now'::text)::timestamp with time zone, | |
version_user_id integer NOT NULL DEFAULT 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
create table iller ( | |
il_id integer not null, | |
plaka_kod integer not null, | |
il_ad character varying(50) not null, | |
version_no integer NOT NULL DEFAULT 1, | |
insert_user_id integer NOT NULL DEFAULT 1, | |
insert_dttm timestamp without time zone NOT NULL DEFAULT ('now'::text)::timestamp without time zone, |