coton_app/db/migrate/20151213153133_add_slug_to_video_files.rb
2018-12-15 14:06:53 +01:00

6 lines
119 B
Ruby

class AddSlugToVideoFiles < ActiveRecord::Migration
def change
add_column :video_files, :slug, :string
end
end