Sha256: 547e4d0efd0140d87d0aca50ae911ce253c62c1323d65356eafe69250291b423

Contents?: true

Size: 978 Bytes

Versions: 6

Compression:

Stored size: 978 Bytes

Contents

ActiveRecord::Schema.define(:version => 1) do
  create_table "account_settings", :force => true do |t|
    t.integer  "account_id"
    t.string   "name"
    t.string   "value"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index :account_settings, [ :account_id, :name ], :unique => true

  create_table "account_texts", :force => true do |t|
    t.integer  "account_id"
    t.string   "name"
    t.string   "value"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index :account_texts, [ :account_id, :name ], :unique => true

  create_table "account_validations", :force => true do |t|
    t.integer  "account_id"
    t.string   "name"
    t.string   "value"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index :account_validations, [ :account_id, :name ], :unique => true

  create_table "accounts", :force => true do |t|
    t.string   "name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
property_sets-0.5.1 test/schema.rb
property_sets-0.5.0 test/schema.rb
property_sets-0.4.4 test/schema.rb
property_sets-0.4.3 test/schema.rb
property_sets-0.4.2 test/schema.rb
property_sets-0.4.1 test/schema.rb