final/db/migrate/20151204093651_create_artic...

9 lines
153 B
Ruby

class CreateArticleStars < ActiveRecord::Migration
def change
create_table :article_stars do |t|
t.timestamps null: false
end
end
end