
sql.mysql.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convo Show documentation
Show all versions of convo Show documentation
Convo conversation manager
The newest version!
create table conversation_holder
(
id varchar(50) primary key,
expires_at datetime,
conversation_class varchar(500),
conversation_value text
);
-- optional
create index idx_conversation_holder_expires_at on conversation_holder (expires_at);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy