@@ -17,19 +17,19 @@ class MessageFormat implements EmbeddableInterface
1717 #[ORM \Column(name: 'sendformat ' , type: 'string ' , length: 20 , nullable: true )]
1818 private ?string $ sendFormat = null ;
1919
20- #[ORM \Column(name: 'astext ' , type: 'integer ' , options: ['default ' => 0 ])]
20+ #[ORM \Column(name: 'astext ' , type: 'boolean ' , options: ['default ' => false ])]
2121 private bool $ asText = false ;
2222
23- #[ORM \Column(name: 'ashtml ' , type: 'integer ' , options: ['default ' => 0 ])]
23+ #[ORM \Column(name: 'ashtml ' , type: 'boolean ' , options: ['default ' => false ])]
2424 private bool $ asHtml = false ;
2525
26- #[ORM \Column(name: 'aspdf ' , type: 'integer ' , options: ['default ' => 0 ])]
26+ #[ORM \Column(name: 'aspdf ' , type: 'boolean ' , options: ['default ' => false ])]
2727 private bool $ asPdf = false ;
2828
29- #[ORM \Column(name: 'astextandhtml ' , type: 'integer ' , options: ['default ' => 0 ])]
29+ #[ORM \Column(name: 'astextandhtml ' , type: 'boolean ' , options: ['default ' => false ])]
3030 private bool $ asTextAndHtml = false ;
3131
32- #[ORM \Column(name: 'astextandpdf ' , type: 'integer ' , options: ['default ' => 0 ])]
32+ #[ORM \Column(name: 'astextandpdf ' , type: 'boolean ' , options: ['default ' => false ])]
3333 private bool $ asTextAndPdf = false ;
3434
3535 public const FORMAT_TEXT = 'text ' ;
0 commit comments