-- 工事期限回避データ drop table if exists PeriodAvoidance cascade; create table PeriodAvoidance ( ConstructionCode decimal(10,0) unsigned not null comment '工事コード' , ConstructionStatusFlg decimal(2,0) not null comment '工事状態フラグ' , FieldNo decimal(2,0) not null comment 'チェック対象フィールド番号' , EntryDate datetime not null comment '登録日付' , UpdateDate datetime not null comment '更新日付' , constraint PeriodAvoidance_PKC primary key (ConstructionCode,ConstructionStatusFlg,FieldNo) ) comment '工事期限回避データ' ; create index PeriodAvoidance_Index1 on PeriodAvoidance(ConstructionCode); create index PeriodAvoidance_Index2 on PeriodAvoidance(ConstructionStatusFlg); create index PeriodAvoidance_Index3 on PeriodAvoidance(FieldNo);