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.
14 lines
218 B
14 lines
218 B
|
|
|
|
CREATE TABLE sphinx_chat_members (
|
|
id INT,
|
|
chat_id INT,
|
|
contact_id INT,
|
|
role INT,
|
|
total_spent INT,
|
|
total_messages INT,
|
|
last_active DATETIME,
|
|
status INT,
|
|
created_at DATETIME,
|
|
updated_at DATETIME
|
|
);
|