final/db/migrate/20151204093651_create_artic...

9 lines
153 B
Ruby
Raw Normal View History

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