From ac23e77d60efbd4d3978c0351f9a046df1c017d8 Mon Sep 17 00:00:00 2001 From: bilal Date: Wed, 3 Jun 2020 09:17:41 +0200 Subject: [PATCH] add filming hours field to the location_releases table --- .../20200603090419_add_filming_hours_to_location_releases.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20200603090419_add_filming_hours_to_location_releases.rb diff --git a/db/migrate/20200603090419_add_filming_hours_to_location_releases.rb b/db/migrate/20200603090419_add_filming_hours_to_location_releases.rb new file mode 100644 index 0000000..589a021 --- /dev/null +++ b/db/migrate/20200603090419_add_filming_hours_to_location_releases.rb @@ -0,0 +1,5 @@ +class AddFilmingHoursToLocationReleases < ActiveRecord::Migration[6.0] + def change + add_column :location_releases, :filming_hours, :text, default: '' + end +end