7 lines
180 B
Ruby
Executable File
7 lines
180 B
Ruby
Executable File
class AddCommentableToArticles < ActiveRecord::Migration
|
|
def change
|
|
add_column :articles, :commentable, :boolean
|
|
add_column :articles, :show_comments, :boolean
|
|
end
|
|
end
|