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