0
0
Fork 0

Change columns in notifications nonnullable (#6764)

This commit is contained in:
Akihiko Odaki 2018-03-24 20:51:28 +09:00 committed by Eugen Rochko
parent fa310695fa
commit b2a4ffd3a9
5 changed files with 23 additions and 17 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20180304013859) do
ActiveRecord::Schema.define(version: 20180310000000) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -274,12 +274,12 @@ ActiveRecord::Schema.define(version: 20180304013859) do
end
create_table "notifications", force: :cascade do |t|
t.bigint "activity_id"
t.string "activity_type"
t.bigint "activity_id", null: false
t.string "activity_type", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.bigint "account_id"
t.bigint "from_account_id"
t.bigint "account_id", null: false
t.bigint "from_account_id", null: false
t.index ["account_id", "activity_id", "activity_type"], name: "account_activity", unique: true
t.index ["account_id", "id"], name: "index_notifications_on_account_id_and_id", order: { id: :desc }
t.index ["activity_id", "activity_type"], name: "index_notifications_on_activity_id_and_activity_type"