me_hot_key_sẹach

 avatar
user_1173722
sql
2 years ago
397 B
5
Indexable
CREATE TABLE me_hot_key_search (
    id int(11) NOT NULL AUTO_INCREMENT,
    key_word varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
    count int(11) NOT NULL DEFAULT '0',
    created_at timestamp default current_timestamp,
    modified_at timestamp default current_timestamp on update current_timestamp,
    PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Editor is loading...