You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
334 B
13 lines
334 B
class CreateEducationEntries < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :education_entries do |t|
|
|
t.string :title
|
|
t.string :institution
|
|
t.string :period
|
|
t.string :location
|
|
t.references :user
|
|
t.timestamps
|
|
end
|
|
add_column :work_experiences, :reference_date, :date
|
|
end
|
|
end
|
|
|