Skip to content

Commit

Permalink
Update typo on README.md (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelokanzaki authored Feb 19, 2024
1 parent 52c5736 commit 9873532
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ module NotificationExtensions
extend ActiveSupport::Concern

included do
belongs_to :organisation
belongs_to :organization

scope :filter_by_type, ->(type) { where(type:) }
scope :exclude_type, ->(type) { where.not(type:) }
Expand Down Expand Up @@ -766,7 +766,7 @@ class CreateNoticedTables < ActiveRecord::Migration[7.1]
t.jsonb :params

# Custom Fields
t.string :organisation_id, type: :uuid, as: "((params ->> 'organisation_id')::uuid)", stored: true
t.string :organization_id, type: :uuid, as: "((params ->> 'organization_id')::uuid)", stored: true
t.virtual :action_type, type: :string, as: "((params ->> 'action_type'))", stored: true
t.virtual :url, type: :string, as: "((params ->> 'url'))", stored: true

Expand Down

0 comments on commit 9873532

Please sign in to comment.