# This file is autogenerated. Instead of editing this file, please use the # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. ActiveRecord::Schema.define(:version => 6) do create_table "boards", :force => true do |t| t.column "user_id", :integer t.column "own", :text t.column "hits", :text t.column "updated_at", :datetime end create_table "games", :force => true do |t| t.column "player1", :integer t.column "player2", :integer t.column "status", :integer, :default => 0 end create_table "users", :force => true do |t| t.column "login", :string, :limit => 20, :default => "", :null => false t.column "crypted_password", :string, :limit => 32, :default => "", :null => false t.column "email", :string, :default => "", :null => false t.column "online", :boolean t.column "score", :integer, :default => 100 t.column "table_id", :integer t.column "created_at", :date t.column "token", :string, :limit => 32 t.column "updated_at", :datetime end end