You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bootcamp/db/migrate/20230925205851_add_more_fie...

8 lines
218 B

class AddMoreFieldsToMovies < ActiveRecord::Migration[7.0]
def change
add_column :movies, :director, :string
add_column :movies, :duration, :string
add_column :movies, :image_file_name, :string
end
end