mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
8 lines
175 B
Ruby
8 lines
175 B
Ruby
class CreateTriggerConversationsInsert < ActiveRecord::Migration[5.0]
|
|
def up
|
|
change_column :conversations, :display_id, :integer, null: false
|
|
end
|
|
|
|
def down; end
|
|
end
|