add filming hours field to the location_releases table

This commit is contained in:
bilal
2020-06-03 09:17:41 +02:00
parent 88836e937e
commit ac23e77d60

View File

@@ -0,0 +1,5 @@
class AddFilmingHoursToLocationReleases < ActiveRecord::Migration[6.0]
def change
add_column :location_releases, :filming_hours, :text, default: ''
end
end