В моем приложении rails у меня есть Пользователь, который имеет много Компаний и принадлежит Компании.Я хотел бы эффективно перейти к ситуации, когда у пользователя есть только одна компания, и она по-прежнему принадлежит компании.Достаточно ли изменить строку кода в User.rb на has_one :company
Я уже убедился, что в моей базе данных все пользователи имеют только одну компанию.Я хотел бы знать наиболее эффективный способ завершения миграции.Это мой пример кода для Company.rb belongs_to :user
.Для действия по созданию компании у меня есть
def create
@company = Company.new(company_params)
@company.user = current_user
preview_company
end
Это моя схема базы данных
create_table "companies", force: :cascade do |t|
t.string "name"
t.text "description"
t.string "website"
t.string "location"
t.string "address"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.bigint "user_id"
t.string "photo"
t.string "logo"
t.index ["user_id"], name: "index_companies_on_user_id"
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "admin", default: false, null: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end