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

7 lines
197 B
Ruby

class AddPublicToVideoFiles < ActiveRecord::Migration
def change
add_column :video_files, :public, :boolean, :default => false
add_column :video_files, :published_at, :datetime
end
end