Sha256: 9d2822a81dfa7f8af5f7524ffa66e494cd29a7fa7c8feb8dcda03c8b59760c52
Contents?: true
Size: 1.22 KB
Versions: 16
Compression:
Stored size: 1.22 KB
Contents
class CreateBitCoreContentProviders < ActiveRecord::Migration def change create_table :bit_core_content_providers do |t| t.string :type, null: false t.string :source_content_type t.integer :source_content_id t.integer :bit_core_content_module_id, null: false t.integer :position, null: false, default: 1 t.timestamps end reversible do |dir| dir.up do execute <<-SQL ALTER TABLE bit_core_content_providers ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position) DEFERRABLE INITIALLY IMMEDIATE SQL execute <<-SQL ALTER TABLE bit_core_content_providers ADD CONSTRAINT fk_content_providers_modules FOREIGN KEY (bit_core_content_module_id) REFERENCES bit_core_content_modules(id) SQL end dir.down do execute <<-SQL ALTER TABLE bit_core_content_providers DROP CONSTRAINT fk_content_providers_modules SQL execute <<-SQL ALTER TABLE bit_core_content_providers DROP CONSTRAINT IF EXISTS bit_core_content_provider_position SQL end end end end
Version data entries
16 entries across 16 versions & 1 rubygems