Sha256: a673f6b933cbccf14f2d51c825e522516c5568c30e6b0a09933bcc326032aa54

Contents?: true

Size: 908 Bytes

Versions: 10

Compression:

Stored size: 908 Bytes

Contents

CREATE TABLE IF NOT EXISTS `tree` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) unsigned NOT NULL,
  `position` bigint(20) unsigned NOT NULL,
  `left` bigint(20) unsigned NOT NULL,
  `right` bigint(20) unsigned NOT NULL,
  `level` bigint(20) unsigned NOT NULL,
  `title` text CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `type` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;

INSERT INTO `tree` (`id`, `parent_id`, `position`, `left`, `right`, `level`, `title`, `type`) VALUES
(1, 0, 2, 1, 14, 0, 'ROOT', ''),
(2, 1, 0, 2, 11, 1, 'C:', 'drive'),
(3, 2, 0, 3, 6, 2, '_demo', 'folder'),
(4, 3, 0, 4, 5, 3, 'index.html', 'default'),
(5, 2, 1, 7, 10, 2, '_docs', 'folder'),
(6, 1, 1, 12, 13, 1, 'D:', 'drive'),
(12, 5, 0, 8, 9, 3, 'zmei.html', 'default');

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
wheels-0.1.8 public/jstree/_demo/_dump.sql
wheels-0.1.7 public/jstree/_demo/_dump.sql
wheels-0.1.6 public/jstree/_demo/_dump.sql
wheels-0.1.5 public/jstree/_demo/_dump.sql
wheels-0.1.4 public/jstree/_demo/_dump.sql
wheels-0.1.3 public/jstree/_demo/_dump.sql
wheels-0.1.2 public/jstree/_demo/_dump.sql
wheels-0.1.1 public/jstree/_demo/_dump.sql
wheels-0.1.0 public/jstree/_demo/_dump.sql
wheels-0.0.49 public/jstree/_demo/_dump.sql