7 lines
165 B
Ruby
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
|