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

9 lines
145 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateToysTable < ActiveRecord::Migration[5.0]
def change
create_table :toys do |t|
end
end
end