You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seeing that are 2 (at 14/06/2024) or more issues that complains about migrations merge on different branchs or the fact that not having an schema simple results on drop table migrations I think it would be an good feature to be able to control it on a manual way.
My ideia:
Migration creation command:
Migrations can have the file name with timestamp (more accurate and less conflicting when working with more than one person on the project)
Do not consider real schemas in the project (since not having a nested project with a crucial schema would (today) result in a migration that would eliminate the table)
Consider control not using the json journal, this will stab the project in relation to the time relationship of the migrations to each other
Considering the above, maybe just use it to directly write SQL control statements that can be arranged and executed at the desired time
extra: maybe provide a ts function (like schema declaration) for down and up to use type safety in table control on migration write
The text was updated successfully, but these errors were encountered:
Describe what you want
Seeing that are 2 (at 14/06/2024) or more issues that complains about migrations merge on different branchs or the fact that not having an schema simple results on drop table migrations I think it would be an good feature to be able to control it on a manual way.
My ideia:
The text was updated successfully, but these errors were encountered: