forked from CamfedCode/Camfed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rb
126 lines (112 loc) · 4.22 KB
/
schema.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# 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 => 20130204095557) do
create_table "add_default_value_to_field_mapppings", :force => true do |t|
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "configurations", :force => true do |t|
t.string "epi_surveyor_url"
t.string "epi_surveyor_user"
t.string "epi_surveyor_token"
t.string "salesforce_url"
t.string "salesforce_user"
t.string "salesforce_token"
t.datetime "created_at"
t.datetime "updated_at"
t.string "salesforce_browse_url"
t.string "supported_languages", :default => "Swahili"
end
create_table "field_mappings", :force => true do |t|
t.integer "object_mapping_id"
t.string "field_name"
t.string "question_name"
t.string "lookup_object_name"
t.string "lookup_condition"
t.string "predefined_value"
t.string "lookup_type"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "import_histories", :force => true do |t|
t.integer "survey_id"
t.string "survey_response_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "object_histories", :force => true do |t|
t.integer "import_history_id"
t.string "salesforce_id"
t.string "salesforce_object"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "object_mappings", :force => true do |t|
t.integer "survey_id"
t.string "salesforce_object_name"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "salesforce_objects", :force => true do |t|
t.string "name"
t.string "label"
t.boolean "enabled"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "sms_responses", :force => true do |t|
t.string "sms_id"
t.string "date_sent"
t.string "message_body"
t.string "sent_to"
t.string "price"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "surveys", :force => true do |t|
t.string "name"
t.datetime "last_imported_at"
t.datetime "created_at"
t.datetime "updated_at"
t.string "notification_email"
t.datetime "mapping_last_modified_at"
t.string "mapping_status", :default => "Unmapped"
end
create_table "sync_errors", :force => true do |t|
t.integer "import_history_id"
t.string "salesforce_object"
t.text "raw_request", :limit => 255
t.text "raw_response", :limit => 255
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "users", :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"
t.boolean "admin", :default => false
t.boolean "verified_by_admin"
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
end