diff options
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20180124124215_add_excluded_dates_to_calendars.rb | 5 | ||||
| -rw-r--r-- | db/schema.rb | 1 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/db/migrate/20180124124215_add_excluded_dates_to_calendars.rb b/db/migrate/20180124124215_add_excluded_dates_to_calendars.rb new file mode 100644 index 000000000..b98b50717 --- /dev/null +++ b/db/migrate/20180124124215_add_excluded_dates_to_calendars.rb @@ -0,0 +1,5 @@ +class AddExcludedDatesToCalendars < ActiveRecord::Migration +  def change +    add_column :calendars, :excluded_dates, :date, array: true +  end +end diff --git a/db/schema.rb b/db/schema.rb index 231bea9ba..b696cfc98 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,6 @@  #  # It's strongly recommended that you check this file into your version control system. -  ActiveRecord::Schema.define(version: 20180126134944) do    # These are extensions that must be enabled in order to support this database | 
