# encoding: UTF-8 # 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 => 20130801102021) do create_table "articles", :force => true do |t| t.string "title" t.text "content" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "audits", :force => true do |t| t.integer "auditable_id" t.string "auditable_type" t.integer "associated_id" t.string "associated_type" t.integer "user_id" t.string "user_type" t.string "username" t.string "action" t.text "audited_changes" t.integer "version", :default => 0 t.string "comment" t.string "remote_address" t.string "request_uuid" t.datetime "created_at" end add_index "audits", ["associated_id", "associated_type"], :name => "associated_index" add_index "audits", ["auditable_id", "auditable_type"], :name => "auditable_index" add_index "audits", ["created_at"], :name => "index_audits_on_created_at" add_index "audits", ["user_id", "user_type"], :name => "user_index" add_index "audits", ["request_uuid"], :name => "request_uuid" create_table "translation_center_categories", :force => true do |t| t.string "name" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "translation_center_translation_keys", :force => true do |t| t.string "name" t.integer "category_id" t.datetime "last_accessed" t.string "en_status", :default => "untranslated" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.string "de_status", :default => "untranslated" t.string "ar_status", :default => "untranslated" end add_index "translation_center_translation_keys", ["name"], :name => "index_translation_center_translation_keys_on_name" create_table "translation_center_translations", :force => true do |t| t.integer "translation_key_id" t.string "value" t.string "lang" t.integer "translator_id" t.string "status", :default => "pending" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.string "translator_type" end add_index "translation_center_translations", ["translation_key_id"], :name => "index_translation_center_translations_on_translation_key_id" create_table "users", :force => true do |t| t.string "email", :default => "", :null => false t.string "encrypted_password", :default => "", :null => false t.string "reset_password_token" t.datetime "reset_password_sent_at" 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", :null => false t.datetime "updated_at", :null => false end add_index "users", ["email"], :name => "index_users_on_email", :unique => true add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true create_table "votes", :force => true do |t| t.integer "votable_id" t.string "votable_type" t.integer "voter_id" t.string "voter_type" t.boolean "vote_flag" t.integer "vote_weight" t.string "vote_scope" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "votes", ["votable_id", "votable_type", "vote_scope"], :name => "index_votes_on_votable_id_and_votable_type_and_vote_scope" add_index "votes", ["votable_id", "votable_type"], :name => "index_votes_on_votable_id_and_votable_type" add_index "votes", ["voter_id", "voter_type", "vote_scope"], :name => "index_votes_on_voter_id_and_voter_type_and_vote_scope" add_index "votes", ["voter_id", "voter_type"], :name => "index_votes_on_voter_id_and_voter_type" end