Subversion Repositories VORC

Rev

Blame | Last modification | View Log | RSS feed

## Table: class_summary
#
# +---------+------------------+------+-----+---------+-------+
# | Field   | Type             | Null | Key | Default | Extra |
# +---------+------------------+------+-----+---------+-------+
# | id      | int(10) unsigned | NO   | PRI | NULL    |       |
# | summary | text             | YES  |     | NULL    |       |
# +---------+------------------+------+-----+---------+-------+

CREATE TABLE `class_summary` (
  `id` int(10) unsigned NOT NULL,
  `summary` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id_UNIQUE` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci