You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
491 B
27 lines
491 B
|
|
|
|
create table if not exists email_send_log
|
|
(
|
|
id serial not null
|
|
constraint email_send_log_pk
|
|
primary key,
|
|
time timestamp not null,
|
|
push_config_id integer not null,
|
|
tactics varchar(32),
|
|
tactics_params jsonb,
|
|
project_correlation_id integer not null,
|
|
to_pep_user_ids integer[] not null
|
|
);
|
|
|
|
comment on table email_send_log is 'EM推送日志';
|
|
|
|
alter table email_send_log owner to postgres;
|
|
|
|
create unique index if not exists email_send_log_id_uindex
|
|
on email_send_log (id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|