9 lines
153 B
Ruby
9 lines
153 B
Ruby
|
class CreateArticleStars < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :article_stars do |t|
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|