From ee6ba8f9b7e55a6e33622ac2660433775409187f Mon Sep 17 00:00:00 2001 From: Karina Kwiatek Date: Mon, 27 Dec 2021 00:37:09 +0100 Subject: [PATCH] Update `schema.rb` (post-rebase) --- db/schema.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/db/schema.rb b/db/schema.rb index c4ca38cf..5087ead2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -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"