# 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 "tasks", :force => true do |t| t.column "name", :string t.column "created_at", :datetime t.column "due_on", :datetime t.column "completed_at", :datetime t.column "position", :integer t.column "user_id", :integer t.column "category", :string end create_table "users", :force => true do |t| t.column "login", :string t.column "email", :string t.column "crypted_password", :string, :limit => 40 t.column "salt", :string, :limit => 40 t.column "created_at", :datetime t.column "updated_at", :datetime t.column "remember_token", :string t.column "remember_token_expires_at", :datetime end end