final/db/migrate/20151204093656_create_artic...

9 lines
153 B
Ruby
Raw Normal View History

2015-12-07 04:43:35 +08:00
class CreateArticleViews < ActiveRecord::Migration
def change
create_table :article_views do |t|
t.timestamps null: false
end
end
end