8 lines
153 B
Ruby
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
|