Update `schema.rb` (post-rebase)
This commit is contained in:
parent
d56dfc02f9
commit
ee6ba8f9b7
|
@ -122,6 +122,7 @@ ActiveRecord::Schema.define(version: 2022_01_05_171216) do
|
|||
t.boolean "new"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "state"
|
||||
t.index ["new"], name: "index_notifications_on_new"
|
||||
t.index ["recipient_id"], name: "index_notifications_on_recipient_id"
|
||||
end
|
||||
|
@ -277,7 +278,12 @@ ActiveRecord::Schema.define(version: 2022_01_05_171216) do
|
|||
t.integer "asked_count", default: 0, null: false
|
||||
t.integer "answered_count", default: 0, null: false
|
||||
t.integer "commented_count", default: 0, null: false
|
||||
t.string "display_name"
|
||||
t.integer "smiled_count", default: 0, null: false
|
||||
t.string "motivation_header", default: "", null: false
|
||||
t.string "website", default: "", null: false
|
||||
t.string "location", default: "", null: false
|
||||
t.text "bio", default: "", null: false
|
||||
t.string "profile_picture_file_name"
|
||||
t.boolean "profile_picture_processing"
|
||||
t.integer "profile_picture_x"
|
||||
|
|
Loading…
Reference in New Issue