view db/migrate/.svn/text-base/090_change_versions_name_limit.rb.svn-base @ 731:3f87a3b61d9c feature_14

now saving the tag list.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 01 Nov 2011 15:20:40 +0000
parents 513646585e45
children
line wrap: on
line source
class ChangeVersionsNameLimit < ActiveRecord::Migration
  def self.up
    change_column :versions, :name, :string, :limit => nil
  end

  def self.down
    change_column :versions, :name, :string, :limit => 30
  end
end