2d45218d2a
git-svn-id: file:///home/svn/framework3/trunk@13771 4d416f70-5f16-0410-b530-b9f4589650da
10 lines
180 B
Ruby
Executable File
10 lines
180 B
Ruby
Executable File
class ExpandNotes < ActiveRecord::Migration
|
|
def self.up
|
|
change_column :notes, :data, :text
|
|
end
|
|
def self.down
|
|
change_column :notes, :data, :string, :limit => 65536
|
|
end
|
|
end
|
|
|