| | |
| | | tcmc varchar(150), |
| | | tcdm varchar(50), |
| | | count integer default 0, |
| | | create_time timestamp(6) without time zone default now() |
| | | create_time timestamp(6) without time zone default now(), |
| | | update_time timestamp(6) without time zone |
| | | ); |
| | | comment on table lf.sys_fme_log is 'FME日志表'; |
| | | comment on column lf.sys_fme_log.id is '主键ID'; |
| | |
| | | comment on column lf.sys_fme_log.tcdm is '表名'; |
| | | comment on column lf.sys_fme_log.count is '行数'; |
| | | comment on column lf.sys_fme_log.create_time is '创建时间'; |
| | | comment on column lf.sys_fme_log.update_time is '更新时间'; |
| | | |
| | | select * from lf.sys_fme_log; -- delete from lf.sys_fme_log; |
| | | select * from lf.sys_fme_log order by id desc; -- delete from lf.sys_fme_log; |
| | | ----------------------------------------------------------------------------------------------------- 32.图层表 |
| | | -- DROP TABLE IF EXISTS lf.sys_layer; |
| | | create table lf.sys_layer( |