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/20181126132402_create_membership_applications.rb

20 lines
554 B
Ruby
Raw Normal View History

2018-11-26 08:39:32 -05:00
# frozen_string_literal: true
class CreateMembershipApplications < ActiveRecord::Migration[5.2]
def change
create_table :membership_applications do |t|
t.timestamps null: false
t.string :first_name, null: false
2018-11-26 09:15:29 -05:00
t.string :last_name, null: false
t.string :middle_name
t.date :date_of_birth, null: false
t.string :occupation
t.string :email, null: false
t.string :phone_number, null: false
t.string :telegram_username
t.text :organization_membership
2018-11-28 08:11:39 -05:00
t.text :comment
2018-11-26 08:39:32 -05:00
end
end
end