1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/db/migrate/20190720022446_add_timezone_to_federal_subjects.rb

10 lines
271 B
Ruby
Raw Normal View History

2019-07-19 22:40:56 -04:00
# frozen_string_literal: true
class AddTimezoneToFederalSubjects < ActiveRecord::Migration[6.0]
def change
# rubocop:disable Rails/NotNullColumn
add_column :federal_subjects, :timezone, :interval, null: false
# rubocop:enable Rails/NotNullColumn
end
end