Files
excel-download/bobby-pay/db/initdb.d/create_table.sql
2023-07-23 20:45:51 +09:00

27 lines
941 B
SQL

CREATE DATABASE IF NOT EXISTS bobby_pay;
USE bobby_pay;
-- for Axon Framework (for Mismatching of Axon and Mysql)
create table IF NOT EXISTS dead_letter_entry (
dead_letter_id varchar(255) not null,
cause_message varchar(255),
cause_type varchar(255),
diagnostics longblob,
enqueued_at datetime not null,
`index` bigint not null,
last_touched datetime,
aggregate_identifier varchar(255),
event_identifier varchar(255) not null,
message_type varchar(255) not null,
meta_data longblob, payload longblob not null,
payload_revision varchar(255),
payload_type varchar(255) not null,
sequence_number bigint,
time_stamp varchar(255) not null,
token longblob, token_type varchar(255),
type varchar(255),
processing_group varchar(255) not null,
processing_started datetime,
sequence_identifier varchar(255) not null,
primary key (dead_letter_id)
) engine=InnoDB