Skip to content

Commit 6ee127d

Browse files
committed
rails db:migrage
1 parent d3296aa commit 6ee127d

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

db/schema.rb

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137

138138
create_table "proposals", force: :cascade do |t|
139139
t.text "abstract"
140+
t.float "average_rating"
140141
t.text "confirmation_notes"
141142
t.datetime "confirmed_at", precision: nil
142143
t.datetime "created_at", precision: nil
@@ -146,6 +147,7 @@
146147
t.text "pitch"
147148
t.text "proposal_data"
148149
t.bigint "session_format_id"
150+
t.string "spoken_language"
149151
t.string "state", default: "submitted"
150152
t.string "title"
151153
t.bigint "track_id"
@@ -182,14 +184,14 @@
182184
end
183185

184186
create_table "services", force: :cascade do |t|
187+
t.string "account_name"
188+
t.datetime "created_at", precision: nil
185189
t.string "provider"
190+
t.string "uemail"
186191
t.string "uid"
187-
t.integer "user_id"
188192
t.string "uname"
189-
t.string "account_name"
190-
t.string "uemail"
191-
t.datetime "created_at"
192-
t.datetime "updated_at"
193+
t.datetime "updated_at", precision: nil
194+
t.integer "user_id"
193195
t.index ["user_id"], name: "index_services_on_user_id"
194196
end
195197

@@ -217,11 +219,15 @@
217219
end
218220

219221
create_table "speakers", force: :cascade do |t|
222+
t.string "age_range"
220223
t.text "bio"
221224
t.datetime "created_at", precision: nil
225+
t.string "ethnicity"
222226
t.bigint "event_id"
227+
t.boolean "first_time_speaker"
223228
t.text "info"
224229
t.bigint "program_session_id"
230+
t.string "pronouns"
225231
t.bigint "proposal_id"
226232
t.string "speaker_email"
227233
t.string "speaker_name"
@@ -318,6 +324,8 @@
318324
t.inet "current_sign_in_ip"
319325
t.string "email", default: "", null: false
320326
t.string "encrypted_password", default: "", null: false
327+
t.string "github_account"
328+
t.string "github_uid"
321329
t.datetime "last_sign_in_at", precision: nil
322330
t.inet "last_sign_in_ip"
323331
t.string "name"
@@ -326,6 +334,8 @@
326334
t.datetime "reset_password_sent_at", precision: nil
327335
t.string "reset_password_token"
328336
t.integer "sign_in_count", default: 0, null: false
337+
t.string "twitter_account"
338+
t.string "twitter_uid"
329339
t.string "uid"
330340
t.string "unconfirmed_email"
331341
t.datetime "updated_at", precision: nil

0 commit comments

Comments
 (0)