Add missing NOT NULL requirement to small, indexed, valid data tables (#33284)
This commit is contained in:
parent
4130bda12e
commit
efc85e39a0
19 changed files with 198 additions and 33 deletions
|
|
@ -5,12 +5,12 @@
|
|||
# Table name: announcement_reactions
|
||||
#
|
||||
# id :bigint(8) not null, primary key
|
||||
# account_id :bigint(8)
|
||||
# announcement_id :bigint(8)
|
||||
# name :string default(""), not null
|
||||
# custom_emoji_id :bigint(8)
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
# account_id :bigint(8) not null
|
||||
# announcement_id :bigint(8) not null
|
||||
# custom_emoji_id :bigint(8)
|
||||
#
|
||||
|
||||
class AnnouncementReaction < ApplicationRecord
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue