Sha256: fd684db2fb98dbd28fecad9b4d11348e38c2de9b341e8669cc451e64828b1405

Contents?: true

Size: 976 Bytes

Versions: 6

Compression:

Stored size: 976 Bytes

Contents

Sequel.migration do
  up do
    run "CREATE TABLE `chains` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(128) NOT NULL DEFAULT '',
  `active` tinyint(1) unsigned DEFAULT '1',
  `version` int(11) unsigned NOT NULL DEFAULT '1',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `user_owner` int(11) unsigned DEFAULT NULL,
  `group_owner` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `active` (`active`),
  KEY `chains_user_owner` (`user_owner`),
  KEY `chains_group_owner` (`group_owner`),
  CONSTRAINT `chains_group_owner` FOREIGN KEY (`group_owner`) REFERENCES `groups` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `chains_user_owner` FOREIGN KEY (`user_owner`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;"
  end

  down do
    drop_table :chains
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
legion-data-1.1.5 lib/legion/data/migrations/004_add_chains.rb
legion-data-1.1.4 lib/legion/data/migrations/004_add_chains.rb
legion-data-java-1.1.3 lib/legion/data/migrations/004_add_chains.rb
legion-data-1.1.3 lib/legion/data/migrations/004_add_chains.rb
legion-data-java-1.1.2 lib/legion/data/migrations/004_add_chains.rb
legion-data-1.1.2 lib/legion/data/migrations/004_add_chains.rb