ActiveRecord::Migration.verbose = false ActiveRecord::Schema.define(:version => 1) do create_table "accounts", :force => true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "account_things", :force => true do |t| t.integer "account_id" t.boolean "enabled", :default => true end create_table "account_people", :force => true, :id => false do |t| t.integer "account_id" t.integer "person_id" end create_table "emails", :force => true do |t| t.string "from" t.string "to" t.text "mail" t.datetime "created_at" t.datetime "updated_at" end create_table "tickets", :force => true do |t| t.string "title" t.integer "account_id" t.datetime "created_at" t.datetime "updated_at" end create_table "people", :force => true do |t| t.string "name" t.string "type" t.datetime "created_at" t.datetime "updated_at" end end