Sha256: 1f647ceb34e59526fc8647b06a30e7c652ea8526c30ed1e4b74cd17eaab1779f
Contents?: true
Size: 463 Bytes
Versions: 10
Compression:
Stored size: 463 Bytes
Contents
class AddAnonymousForumPosting < ActiveRecord::Migration def self.up add_column :sb_posts, :author_name, :string add_column :sb_posts, :author_email, :string add_column :sb_posts, :author_url, :string add_column :sb_posts, :author_ip, :string end def self.down remove_column :sb_posts, :author_name remove_column :sb_posts, :author_email remove_column :sb_posts, :author_url remove_column :sb_posts, :author_ip end end
Version data entries
10 entries across 10 versions & 1 rubygems