1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20220506143526_create_profile_custom_fields.rb

12 lines
266 B
Ruby

class CreateProfileCustomFields < ActiveRecord::Migration[5.2]
def change
create_table :profile_custom_fields do |t|
t.string :label
t.boolean :required, default: false
t.boolean :actived, default: false
t.timestamps
end
end
end