install/schemas/upgrade/1.1.3-1.1.4-mysql.sql
author Dan
Sun, 06 Apr 2008 15:30:39 -0400
changeset 519 94214ec0871c
child 541 acb7e23b6ffa
permissions -rw-r--r--
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.

-- This is really honestly a better way to handle plugins.

CREATE TABLE {{TABLE_PREFIX}}plugins (
  plugin_id int(12) NOT NULL auto_increment,
  plugin_filename varchar(63),
  plugin_flags int(12),
  plugin_version varchar(16),
  PRIMARY KEY ( plugin_id )
) ENGINE `MyISAM` CHARACTER SET `utf8` COLLATE `utf8_bin`;