summaryrefslogtreecommitdiffstats
path: root/db/migrate/20150921204850_change_time_entries_comments_limit_to_1024.rb
blob: f529a99fcd50931791a078a43054ddf1945c9172 (plain)
1
2
3
4
5
6
7
8
9
class ChangeTimeEntriesCommentsLimitTo1024 < ActiveRecord::Migration[4.2]
  def self.up
    change_column :time_entries, :comments, :string, :limit => 1024
  end

  def self.down
    change_column :time_entries, :comments, :string, :limit => 255
  end
end