Sha256: 86efe4e1a7710e55a18c4d9eed64c5d36464a1a2f8fdd6c165e2a0ec820cb828
Contents?: true
Size: 707 Bytes
Versions: 17
Compression:
Stored size: 707 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 "accounts", :force => true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end end
Version data entries
17 entries across 17 versions & 1 rubygems