ual_app/db/migrate/20120509084011_add_author_to_articles.rb
2014-08-24 00:18:02 +02:00

7 lines
119 B
Ruby

class AddAuthorToArticles < ActiveRecord::Migration
def change
add_column :articles, :author, :string
end
end