Table: nornix_site.blocktemplate

Structure Block templates
NameTypeNullKeyDefaultExtraComment
ScripttextNO
Typetinyint(3) unsignedNO0
Blockvarchar(16)NOUNI
BlockNosmallint(6)NOPRI
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
0Block1BlockA1BTREE
Information
EngineRow formatTable collationCreate options
MyISAMDynamicutf8_general_ci
CREATE TABLE `blocktemplate` (
  `Script` text NOT NULL,
  `Type` tinyint(3) unsigned NOT NULL default '',
  `Block` varchar(16) NOT NULL,
  `BlockNo` smallint(6) NOT NULL,
  PRIMARY KEY  (`BlockNo`),
  UNIQUE KEY `Block` (`Block`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Block templates'