Unknown sql data types tinyinteger requested. any doctrine type

Unknown column type "tinyinteger" requested. Any Doctrine type that you use has to be registered with DoctrineDBALTypesType::addType( ) Doctorine/dbal is a PHP package, used for modifying columns programmatically without touching…

Laravel migration add comment to existing column

  Inside this post, we will discuss creating migration, adding a comment to a new column, and adding a comment to existing columns. For this article, I am assuming that…

How To Add a Default Value To Column in Laravel Migration

  Here I will be sharing, how we can add default value to column in laravel migration. As well as I will be adding an example to create migration in…

How to Add Index to Column in Laravel Migration

  Hello mates Inside this article, I will be sharing, how to add an index to column in laravel migration. As well as I will be sharing, how to create…

How to Modify Type Of Column In Laravel Migration

 Hello Guys, This is a quick example of how we can modify a column in Laravel migrations. You May like  How to add a column in Laravel Migration How to…