docbrown/db/migrate/20170920160022_add_crossposted_at_to_articles.rb
2018-02-28 16:11:08 -05:00

5 lines
140 B
Ruby

class AddCrosspostedAtToArticles < ActiveRecord::Migration[5.1]
def change
add_column :articles, :crossposted_at, :datetime
end
end