Muhammad Valian Masdani
Muhammad Valian Masdani
Hi, I looked at [deno-nessie](https://github.com/halvardssm/deno-nessie) today. While it's packed with a lot of features unfortunately it's not what I had in mind, because nessie relies heavily on CLI tools, while...
Hi, Yes, the `AutoMigrate` function is exactly what I'm trying to implement here. I understand if DenoDB is trying to be as unopiniated as possible, and I agree that things...
Hey @eveningkid! sorry for the really late reply. I haven't really made a progress since I had a few problems with my development machine. A few days ago my 10-year...
Hi, I've done some work on my fork [vmasdani/denodb](https://github.com/vmasdani/denodb). The function is `experimentalAutoMigrate`. I've successfully detected missing fields using select field like this: ```ts // https://github.com/vmasdani/denodb/blob/287a975371ea87185594940ebf884768183041e0/lib/model.ts#L208 this._queryBuilder .select(key) .table( this.table,...
@eveningkid I'll just name the title draft since there are no options ;) https://github.com/eveningkid/denodb/pull/259
Hi @eveningkid , I have made some progress with this. I have successfully executed `alterTable` with `dex` and the missing fields were successfully automatically made. But I have problems matching...
Oh my, I just discovered that I can just do it like this ```ts table[query.columnType](query.addColumn); ``` I guess I learn new things everyday. I'll just implement it later
@stillalivx I am using sqlite3. But I think it shouldn't matter much what database this auto-migrate feature uses because `Dex` will translate the query builder to the correct SQL dialects...
Sure @eveningkid please take your time! And please take it easy too since this isn't too urgent 😉
hello @eveningkid , really really sorry because I did not notice your comments in https://github.com/eveningkid/denodb/pull/259 , I did not know that you have made some really useful reviews there, I...