# This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # # Note that this schema.rb definition is the authoritative source for your # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended to check this file into your version control system. ActiveRecord::Schema.define(:version => 20110104004400) do create_table "admins", :force => true do |t| t.string "email", :default => "", :null => false t.string "encrypted_password", :limit => 128, :default => "", :null => false t.string "password_salt", :default => "", :null => false t.string "reset_password_token" t.string "remember_token" t.datetime "remember_created_at" t.integer "sign_in_count", :default => 0 t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" t.datetime "created_at" t.datetime "updated_at" end add_index "admins", ["email"], :name => "index_admins_on_email", :unique => true add_index "admins", ["reset_password_token"], :name => "index_admins_on_reset_password_token", :unique => true create_table "authors", :force => true do |t| t.string "email", :default => "", :null => false t.string "encrypted_password", :limit => 128, :default => "", :null => false t.string "password_salt", :default => "", :null => false t.string "reset_password_token" t.string "remember_token" t.datetime "remember_created_at" t.integer "sign_in_count", :default => 0 t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" t.integer "failed_attempts", :default => 0 t.string "unlock_token" t.datetime "locked_at" t.datetime "created_at" t.datetime "updated_at" end add_index "authors", ["email"], :name => "index_authors_on_email", :unique => true add_index "authors", ["reset_password_token"], :name => "index_authors_on_reset_password_token", :unique => true add_index "authors", ["unlock_token"], :name => "index_authors_on_unlock_token", :unique => true create_table "comments", :force => true do |t| t.integer "entry_id" t.string "name" t.string "email" t.text "body" t.datetime "created_at" t.datetime "updated_at" t.string "url" end add_index "comments", ["entry_id"], :name => "index_comments_on_entry_id" create_table "entries", :force => true do |t| t.string "title" t.text "body" t.boolean "draft" t.datetime "published_at" t.datetime "created_at" t.datetime "updated_at" t.string "cached_slug" end create_table "settings", :force => true do |t| t.string "site_url" t.string "host_name" t.string "mail_from" t.string "site_name" t.string "tagline" t.string "google_tracker_id" t.boolean "blackbird_enabled" t.datetime "created_at" t.datetime "updated_at" t.integer "entries_per_page" t.string "time_zone" t.string "sidebar_heading" t.string "github_username" t.string "twitter_username" t.boolean "show_github_badge" t.string "facebook_url" end create_table "slugs", :force => true do |t| t.string "name" t.integer "sluggable_id" t.integer "sequence", :default => 1, :null => false t.string "sluggable_type", :limit => 40 t.string "scope" t.datetime "created_at" end add_index "slugs", ["name", "sluggable_type", "sequence", "scope"], :name => "index_slugs_on_n_s_s_and_s", :unique => true add_index "slugs", ["sluggable_id"], :name => "index_slugs_on_sluggable_id" end