Files
old-holivud2/db/migrate/20190513212952_add_name_and_number_to_videos.rb
2020-05-31 22:38:19 +02:00

7 lines
165 B
Ruby

class AddNameAndNumberToVideos < ActiveRecord::Migration[5.2]
def change
add_column :videos, :name, :string
add_column :videos, :number, :string
end
end