0
0
Fork 0

Add NOT NULL requirement to columns on account_conversations (#33308)

This commit is contained in:
Matt Jankowski 2024-12-16 03:20:08 -05:00 committed by GitHub
parent a596f3479b
commit cf4595967b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 59 additions and 7 deletions

View file

@ -5,13 +5,13 @@
# Table name: account_conversations
#
# id :bigint(8) not null, primary key
# account_id :bigint(8)
# conversation_id :bigint(8)
# lock_version :integer default(0), not null
# participant_account_ids :bigint(8) default([]), not null, is an Array
# status_ids :bigint(8) default([]), not null, is an Array
# last_status_id :bigint(8)
# lock_version :integer default(0), not null
# unread :boolean default(FALSE), not null
# account_id :bigint(8) not null
# conversation_id :bigint(8) not null
# last_status_id :bigint(8)
#
class AccountConversation < ApplicationRecord