rating/spec/support/db/migrate/create_comments_table.rb

8 lines
138 B
Ruby

# frozen_string_literal: true
class CreateCommentsTable < ActiveRecord::Migration[5.0]
def change
create_table :comments
end
end