/*
================================================================================
档案代号:toh_file
档案名称:省台广告费分摊比率档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table toh_file
(
toh01       varchar2(10) NOT NULL,   /*省别                                   */
toh02       varchar2(10) NOT NULL,   /*媒体代号                               */
toh03       varchar2(255),           /*备注                                   */
tohacti     varchar2(1),             /*有效否                                 */
tohuser     varchar2(10),            /*建档人员                               */
tohgrup     varchar2(10),            /*建档部门                               */
tohmodu     varchar2(10),            /*最后修改者                             */
tohdate     date,                    /*最近修改日                             */
tohud01     varchar2(255),           /*自订栏位-Textedit                      */
tohud02     varchar2(40),            /*自订栏位-文字                          */
tohud03     varchar2(40),            /*自订栏位-文字                          */
tohud04     varchar2(40),            /*自订栏位-文字                          */
tohud05     varchar2(40),            /*自订栏位-文字                          */
tohud06     varchar2(40),            /*自订栏位-文字                          */
tohud07     number(15,3),            /*自订栏位-数值                          */
tohud08     number(15,3),            /*自订栏位-数值                          */
tohud09     number(15,3),            /*自订栏位-数值                          */
tohud10     number(10),              /*自订栏位-整数                          */
tohud11     number(10),              /*自订栏位-整数                          */
tohud12     number(10),              /*自订栏位-整数                          */
tohud13     date,                    /*自订栏位-日期                          */
tohud14     date,                    /*自订栏位-日期                          */
tohud15     date                     /*自订栏位-日期                          */
);

create unique index toh_pk on toh_file (toh01,toh02);
alter table toh_file add  constraint toh_pk primary key  (toh01,toh02) enable validate;
grant select on toh_file to public;
grant index on toh_file to public;
grant update on toh_file to public;
grant delete on toh_file to public;
grant insert on toh_file to public;