Column order on table creation (CreateTableIfNotExists)

Hello,
can I order the columns during creation with ormlite? Is there an attribute or something like this for declare the column order during creation?

Thank you.

There isn’t, it uses the order properties are returned from the .NET’s reflection APIs which is usually the order they’re declared in.