52194116b3
- upgraded to rails 6 - fixes various issues
9 lines
180 B
Ruby
9 lines
180 B
Ruby
|
|
class CreateTriggerConversationsInsert < ActiveRecord::Migration[5.0]
|
|
def up
|
|
change_column :conversations, :display_id, :integer, :null => false
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|