how to create table for a custom object that contain a list of like this
public class Mobel implements Parcelable {
int thumbnail;
List<Integer> pics;
int price;
String joziat;
String code;
}
as you know there is no problem with int and string columns but how should i store my list of integer ? i was thinking to make a separate table for it but as i don't know ho many pic i have for particular object have no idea how should i join them