Subversion Repositories VORC

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
222 - 1
## Table: class_summary
2
#
3
# +---------+------------------+------+-----+---------+-------+
4
# | Field   | Type             | Null | Key | Default | Extra |
5
# +---------+------------------+------+-----+---------+-------+
6
# | id      | int(10) unsigned | NO   | PRI | NULL    |       |
7
# | summary | text             | YES  |     | NULL    |       |
8
# +---------+------------------+------+-----+---------+-------+
9
 
10
CREATE TABLE `class_summary` (
11
  `id` int(10) unsigned NOT NULL,
12
  `summary` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
13
  PRIMARY KEY (`id`),
14
  UNIQUE KEY `id_UNIQUE` (`id`)
15
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci