10 lines
234 B
Ruby
10 lines
234 B
Ruby
class ChangeAsseturlsInVideolisting < ActiveRecord::Migration
|
|
def up
|
|
change_column :videolistings, :asseturls, :string, array: false
|
|
end
|
|
|
|
def down
|
|
change_column :videolistings, :asseturls, :string, array: true
|
|
end
|
|
end
|