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

9 lines
271 B
Ruby

# 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