diff --git a/db/migrate/20240418233828_create_accredited_representative_portal_verified_representatives.rb b/db/migrate/20240418233828_create_accredited_representative_portal_verified_representatives.rb index d5e5b1fc7ab..baa6ed0071d 100644 --- a/db/migrate/20240418233828_create_accredited_representative_portal_verified_representatives.rb +++ b/db/migrate/20240418233828_create_accredited_representative_portal_verified_representatives.rb @@ -4,9 +4,6 @@ class CreateAccreditedRepresentativePortalVerifiedRepresentatives < ActiveRecord def change create_table :accredited_representative_portal_verified_representatives do |t| t.string :ogc_registration_number, null: false - t.string :first_name - t.string :last_name - t.string :middle_initial t.string :email, null: false t.timestamps diff --git a/db/schema.rb b/db/schema.rb index 6e5d99a7c15..4712948ab78 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -130,9 +130,6 @@ create_table "accredited_representative_portal_verified_representatives", force: :cascade do |t| t.string "ogc_registration_number", null: false - t.string "first_name" - t.string "last_name" - t.string "middle_initial" t.string "email", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false