Fix bug with "plugin" table fields sizes

This commit is contained in:
Dmitriy Simushev 2014-12-10 11:15:23 +00:00
parent 4e4f0adfd6
commit e0716bbeb2

View File

@ -296,9 +296,9 @@ plugin:
# Artificial ID # Artificial ID
id: "INT NOT NULL auto_increment PRIMARY KEY" id: "INT NOT NULL auto_increment PRIMARY KEY"
# Plugin name in "<Vendor>:<Name>" format. # Plugin name in "<Vendor>:<Name>" format.
name: "varchar(1024) NOT NULL" name: "varchar(255) NOT NULL"
# Installed version of the plugin. # Installed version of the plugin.
version: "varchar(256) NOT NULL" version: "varchar(255) NOT NULL"
# Indicates if the plugin is installed or not. # Indicates if the plugin is installed or not.
installed: "tinyint NOT NULL DEFAULT 0" installed: "tinyint NOT NULL DEFAULT 0"
# Indicates if the plugin is enabled or not. # Indicates if the plugin is enabled or not.