Sha256: a8079eb717849ea57c928f2fdb4d17966b795ecf5aaf4ac307b1b52457cae7a3

Contents?: true

Size: 252 Bytes

Versions: 4

Compression:

Stored size: 252 Bytes

Contents

class CreateConfigurationSettings < ActiveRecord::Migration[4.2]
  def up
    create_table :configuration_settings, force: true do |t|
      t.string :key
      t.string :value
    end
  end

  def down
    drop_table :configuration_settings
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
iqvoc-4.14.5 db/migrate/20120119000000_create_configuration_settings.rb
iqvoc-4.14.4 db/migrate/20120119000000_create_configuration_settings.rb
iqvoc-4.13.2 db/migrate/20120119000000_create_configuration_settings.rb
iqvoc-4.13.0 db/migrate/20120119000000_create_configuration_settings.rb