hello-learning/bookstore/db/migrate/20191009202422_create_reviews.rb
2019-10-10 10:15:45 -05:00

8 lines
153 B
Ruby

class CreateReviews < ActiveRecord::Migration[6.0]
def change
create_table :reviews do |t|
t.text :body
t.timestamps
end
end
end