vidpush/db/schema.rb

113 lines
4.1 KiB
Ruby
Raw Normal View History

2014-04-07 18:41:34 +00:00
# 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 that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140415174406) do
2014-04-07 18:41:34 +00:00
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
2014-04-08 19:27:38 +00:00
create_table "admins", 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, null: false
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, using: :btree
add_index "admins", ["reset_password_token"], name: "index_admins_on_reset_password_token", unique: true, using: :btree
2014-04-07 18:41:34 +00:00
create_table "campaigns", force: true do |t|
t.string "clientid"
t.string "listingcode"
t.string "billingcode"
t.string "advertisername"
t.string "address1"
t.string "address2"
t.string "city"
t.string "state"
t.string "zip"
t.string "emailaddress"
t.string "customerfirstname"
t.string "customerlastname"
t.string "salesrep"
t.string "salesrepemail"
t.string "businessphone"
t.string "contactphone"
t.string "websiteurl"
t.datetime "created_at"
t.datetime "updated_at"
t.boolean "processed"
t.boolean "sent", default: false
2014-04-07 18:41:34 +00:00
end
create_table "delayed_jobs", force: true do |t|
t.integer "priority", default: 0, null: false
t.integer "attempts", default: 0, null: false
t.text "handler", null: false
t.text "last_error"
t.datetime "run_at"
t.datetime "locked_at"
t.datetime "failed_at"
t.string "locked_by"
t.string "queue"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority", using: :btree
2014-04-08 19:27:38 +00:00
create_table "users", force: true do |t|
t.datetime "created_at"
t.datetime "updated_at"
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, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
2014-04-15 17:04:58 +00:00
t.string "authentication_token"
2014-04-08 19:27:38 +00:00
end
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
2014-04-07 18:41:34 +00:00
create_table "videolistings", force: true do |t|
t.string "videocode"
t.string "producttypeid"
t.string "remoteassetsarchive"
t.string "voiceoverselection"
t.string "musicselection"
t.string "clientprovidedscript"
t.string "keywords"
t.string "focus"
t.string "notes"
2014-04-15 17:04:58 +00:00
t.string "asseturls", default: "{}"
2014-04-07 18:41:34 +00:00
t.datetime "created_at"
t.datetime "updated_at"
t.integer "campaign_id"
end
end