blob: 3a9791920f3c85a4e9d8efb5cd4ec5c466514587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: false
class AddCustomFieldsDescription < ActiveRecord::Migration[4.2]
def up
add_column :custom_fields, :description, :text
end
def down
remove_column :custom_fields, :description
end
end
|