vidpush/db/schema.rb

119 lines
4.2 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.
2014-05-05 18:07:33 +00:00
ActiveRecord::Schema.define(version: 20140505153412) 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|
2014-04-21 15:54:28 +00:00
t.integer "clientid"
2014-04-07 18:41:34 +00:00
t.string "listingcode"
t.string "billingcode"
t.string "advertisername"
t.string "address"
2014-04-07 18:41:34 +00:00
t.string "city"
t.string "state"
t.string "zip"
t.string "emailaddress"
t.string "customerfirstname"
t.string "customerlastname"
t.string "businessphone"
t.string "contactphone"
t.string "websiteurl"
t.datetime "created_at"
t.datetime "updated_at"
t.boolean "sent", default: false
t.string "awards"
t.string "background"
t.string "categories"
t.string "companycolors"
2014-04-25 20:35:42 +00:00
t.text "description"
t.string "facebookurl"
t.string "productsandservices"
t.string "targetaudience"
t.string "tollfreephone"
t.string "vpa"
2014-05-05 18:07:33 +00:00
t.string "vpa_email"
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-05-14 18:01:19 +00:00
create_table "accounts", force: true do |t|
2014-04-08 19:27:38 +00:00
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"
2014-04-21 15:54:28 +00:00
t.integer "producttypeid"
t.integer "voiceoverselection"
t.integer "musicselection"
2014-04-25 20:09:03 +00:00
t.text "clientprovidedscript"
t.text "notes"
t.text "asseturls", default: "{}"
2014-04-07 18:41:34 +00:00
t.datetime "created_at"
t.datetime "updated_at"
t.integer "campaign_id"
t.string "toneofvideo"
2014-04-24 19:17:23 +00:00
t.boolean "published"
2014-04-07 18:41:34 +00:00
end
end