vasya
vasya

Reputation: 35

Symfony change entity field type

I have entity MyEntity and field time with type integer. Now i need change field type from time to DateTime.

How can i do this if some records have integer value type in this field?

Upvotes: 2

Views: 4467

Answers (1)

Alsatian
Alsatian

Reputation: 3135

  • Create a temp field (Datetime)
  • update schema
  • run some logic to fill this temp field according to the time value
  • remove time field
  • update schema
  • rename temp field and accessors as time
  • update schema

Upvotes: 3

Related Questions