Confused by Kysely
I'm using kysely for a project and I'm using it to create tables, however now that I create the tables with the columns and behaviors I want, I need to essentially do the same by writing the typescript type, which seems bad. Am I missing something or is that really how I'm expected to do this?
for example here is a users table
Now if I want this to have typescript types I have to write this as well
I would think that the library should be able to auto generate this type from all the information I give it when I create the damn table
for example here is a users table
Now if I want this to have typescript types I have to write this as well
I would think that the library should be able to auto generate this type from all the information I give it when I create the damn table
