Give notes more space in the database.

Prepare for 0.38.0 release.
parent dace3e71
......@@ -30,7 +30,7 @@ class Telegram
*
* @var string
*/
protected $version = '0.37.1';
protected $version = '0.38.0';
/**
* Telegram API key
......
......@@ -185,7 +185,7 @@ CREATE TABLE IF NOT EXISTS `conversation` (
`chat_id` bigint NULL DEFAULT NULL COMMENT 'Unique user or chat identifier',
`status` ENUM('active', 'cancelled', 'stopped') NOT NULL DEFAULT 'active' COMMENT 'Conversation state',
`command` varchar(160) DEFAULT '' COMMENT 'Default command to execute',
`notes` varchar(1000) DEFAULT 'NULL' COMMENT 'Data stored from command',
`notes` text DEFAULT NULL COMMENT 'Data stored from command',
`created_at` timestamp NULL DEFAULT NULL COMMENT 'Entry date creation',
`updated_at` timestamp NULL DEFAULT NULL COMMENT 'Entry date update',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment