Sha256: 6320248d8bbbc2a63dfea72da75b22a5a3f86c618e27eeb7ec2d20ba2dbae7e6

Contents?: true

Size: 642 Bytes

Versions: 7

Compression:

Stored size: 642 Bytes

Contents

ActiveRecord::Schema.define :version => 0 do
  create_table "settings", :force => true do |t|
    t.integer  "settable_id",   :limit => 11
    t.string   "settable_type"
    t.string   "context"
    t.string   "key"
    t.string   "value"
    t.datetime "created_at"
  end

  add_index "settings", ["settable_id", "context", "key"], name: "index_settings_on_settable_id_and_context_and_key", unique: true, using: :btree
  add_index "settings", ["settable_id", "settable_type"], name: "index_settings_on_settable_id_and_settable_type", using: :btree

  create_table :tunable_models, :force => true do |t|
    t.column :name, :string
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tunable-0.0.7 spec/schema.rb
tunable-0.0.6 spec/schema.rb
tunable-0.0.5 spec/schema.rb
tunable-0.0.4 spec/schema.rb
tunable-0.0.3 spec/schema.rb
tunable-0.0.2 spec/schema.rb
tunable-0.0.1 spec/schema.rb