diff --git a/db/migrate/20200421152314_create_favorite_people.rb b/db/migrate/20200421152314_create_favorite_people.rb index d1a00b0..039d27d 100644 --- a/db/migrate/20200421152314_create_favorite_people.rb +++ b/db/migrate/20200421152314_create_favorite_people.rb @@ -6,6 +6,7 @@ class CreateFavoritePeople < ActiveRecord::Migration[6.0] t.string :first_name t.string :last_name t.string :picture_uri + t.string :personal_annotation t.timestamps end diff --git a/db/migrate/20200521091231_create_favorite_courses.rb b/db/migrate/20200521091231_create_favorite_courses.rb index 4937ab0..d475a0b 100644 --- a/db/migrate/20200521091231_create_favorite_courses.rb +++ b/db/migrate/20200521091231_create_favorite_courses.rb @@ -5,6 +5,7 @@ class CreateFavoriteCourses < ActiveRecord::Migration[6.0] t.string :semester, null: false t.string :title, null: false t.integer :user_id, null: false + t.string :personal_annotation t.timestamps end diff --git a/db/migrate/20200525132942_create_favorite_theses.rb b/db/migrate/20200525132942_create_favorite_theses.rb index 64c63db..c0edcef 100644 --- a/db/migrate/20200525132942_create_favorite_theses.rb +++ b/db/migrate/20200525132942_create_favorite_theses.rb @@ -4,6 +4,7 @@ class CreateFavoriteTheses < ActiveRecord::Migration[6.0] t.integer :id, null: false t.integer :user_id, null: false t.string :title + t.string :personal_annotation t.timestamps end diff --git a/db/migrate/20200529081537_create_favorite_projects.rb b/db/migrate/20200529081537_create_favorite_projects.rb index c5195f8..701e4e5 100644 --- a/db/migrate/20200529081537_create_favorite_projects.rb +++ b/db/migrate/20200529081537_create_favorite_projects.rb @@ -4,6 +4,7 @@ class CreateFavoriteProjects < ActiveRecord::Migration[6.0] t.integer :id, null: false t.integer :user_id, null: false t.string :title + t.string :personal_annotation t.timestamps end