07a1a81
1 2 3 4 5 6 7 8 9
class AddCustomUrlFieldToBlogPosts < ActiveRecord::Migration def self.up add_column :blog_posts, :custom_url, :string end def self.down remove_column :blog_posts, :custom_url end end