6 lines
123 B
Ruby
6 lines
123 B
Ruby
|
class AlterFirstPage < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column("first_pages","description",:text)
|
||
|
end
|
||
|
end
|