I have a table with no primary keys. How can I insert data into it. When I have a table with primary key I can do insertOrUpdate(...) but I don't see a method for just inserting.
This is what I do for tables with primary keys:
db.run(table.insertOrUpdate(colorEntity))