Sha256: 3df0623b0eec70f41f426d1f55c6362cef91f32e2726ce352ab07a74de368b8a
Contents?: true
Size: 247 Bytes
Versions: 16
Compression:
Stored size: 247 Bytes
Contents
class CreateConfigurationSettings < ActiveRecord::Migration 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
16 entries across 16 versions & 1 rubygems