0

Is there a method in Laravel 5.4 to add a column after/before another column inside a sqlite table? Like after('column') for MySql?

Why I'm in a hurry is because whenever I tried to rename a column using Laravel migration, it jumps and stick to the last / end of a table!

Is there a way to get rid out of this?

Michel
  • 1,085
  • 13
  • 24

1 Answers1

1

Short answer: no.

However there is apparently a workaround:

Insert new column into table in sqlite?

Disclaimer: I rarely use sqlite and cannot verify this works. Good luck.