|
class CreateResidentExpertActions < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :resident_expert_actions do |t|
|
|
t.references :resident_expert
|
|
t.integer :action_type, default: 0
|
|
t.string :action_name
|
|
t.string :action_description
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|