Chatwoot/db/migrate/20210721182458_add_snoozed_until_to_conversations.rb

6 lines
148 B
Ruby
Raw Normal View History

class AddSnoozedUntilToConversations < ActiveRecord::Migration[6.0]
def change
add_column :conversations, :snoozed_until, :datetime
end
end