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/20190326200244_add_personal_data_to_people.rb

12 lines
387 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddPersonalDataToPeople < ActiveRecord::Migration[6.0]
def change
# rubocop:disable Rails/NotNullColumn
add_column :people, :sex, :integer, null: false
add_column :people, :date_of_birth, :date, null: false
add_column :people, :place_of_birth, :string, null: false
# rubocop:enable Rails/NotNullColumn
end
end