Sha256: 7a7fe412ce1e3f0346d0b692f20b278b5cddf9cd5af980e96a15f54b7caedbea

Contents?: true

Size: 818 Bytes

Versions: 68

Compression:

Stored size: 818 Bytes

Contents

class CreateContentProviders < ActiveRecord::Migration
  def up
    create_table :content_providers do |t|
      t.string :type, null: false
      t.string :source_content_type
      t.integer :source_content_id
      t.references :content_module, index: true, null: false
      t.integer :position, null: false, default: 1

      t.timestamps
    end

    reversible do |dir|
      dir.up do
        execute <<-SQL
          ALTER TABLE content_providers
            ADD CONSTRAINT fk_content_providers_modules
            FOREIGN KEY (content_module_id)
            REFERENCES content_modules(id)
        SQL
      end

      dir.down do
        execute <<-SQL
          ALTER TABLE content_providers
            DROP CONSTRAINT fk_content_providers_modules
        SQL
      end
    end
  end

  def down
  end
end

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.8 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.7 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.6 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.5 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.4 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.2 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.1 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.22.0 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.21.2 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.21.1 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.21.0 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.20.1 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.9 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.8 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.7 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.6 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.5 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.4 db/migrate/20140224031252_create_content_providers.rb
think_feel_do_engine-3.19.3 db/migrate/20140224031252_create_content_providers.rb