Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8540991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:43:30+00:00 2026-06-11T11:43:30+00:00

Tag table has a relation to the Category table as Many-to-One (many tags are

  • 0

Tag table has a relation to the Category table as Many-to-One (many tags are related to one category, or one category has many tags).

I should get normal Many-to-One relation from table Tag to the table Category. It should be based on the ID from the table Category (which is named id_category). However, instead I’m getting… a VARCHAR(255) column in table Tag!

Here’s part of code from Tag entity:

/**
 * @ORM\Column(nullable=true)
 * @ORM\ManyToOne(targetEntity="Category")
 * @ORM\JoinColumn(name="id_category", referencedColumnName="id_category")
 */
protected $category;

Category entity doesn’t have appropriate related “tag” column, because it’s uni-directional relation. Anyway, here’s how id_category is declared in the Category entity (though I don’t think it’s important):

/**
 * @ORM\Id
 * @ORM\Column(type="integer")
 * @ORM\GeneratedValue(strategy="AUTO")
 */
protected $id_category;

The result I’m getting by the Doctrine2’s command update --dump-sql is the following:

ALTER TABLE Tag ADD category VARCHAR(255) DEFAULT NULL

Doctrine gives me VARCHAR, instead of INTEGER as id with foreign key. Does anyone know why?
How to tell Symfony to make a relation in this case?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T11:43:31+00:00Added an answer on June 11, 2026 at 11:43 am

    Don´t use @ORM\Column, just @ORM\ManyToOne:

    /**
     * @ORM\ManyToOne(targetEntity="Category")
     * @ORM\JoinColumn(name="id_category", referencedColumnName="id_category", nullable=true)
     */
    protected $category;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get some data from a table, where the tag has no
I have 3 tables. Tour Table (optional) Tour Tag Relation Table (optional_tag_rel) Tour Theme
I have a problem. Imagine this data model: [Person] table has: PersonId, Name1 [Tag]
I am trying to write a MySQL query that retrieves one record from table
If I need to fetch rows from table A with a matching tag in
How to create dynamically tag inside table. At first create link then inside link
I have the following setup: Table: Question QuestionId Table: QuestionTag QuestionId TagId Table: Tag
I have an objects, tags, and tag_relationships table. Objects and tags each have an
I have a link ( anchor ) tag in a table cell on every
Having trouble understanding how to filter an images table by tag information in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.