35409-vm/db/migrations/001_create_canned_replies.sql
Flatlogic Bot c5127ef2c4 smash 1
2025-11-02 05:02:40 +00:00

6 lines
175 B
SQL

CREATE TABLE IF NOT EXISTS `canned_replies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`message` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;