What type of data in the migrations should be set for:
1) INTEGER listing 1,2,3,4
2) String listing images/1.jpg,images/2.jpg,images/3.jpg
In the first case, I will store id records, in the second case, links to images.
Now I use $table->string();
But something tells me that I am going the wrong way. Thank.