Sha256: c9353172bdba526ee26f4f93ea700a7759846638b09ca79231b241288122c1d4
Contents?: true
Size: 1.22 KB
Versions: 10
Compression:
Stored size: 1.22 KB
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 "account_typed_data", :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_typed_data, [ :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
10 entries across 10 versions & 1 rubygems