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
Is your feature request related to a problem? Please describe.
When running migrations automatically on file changes, it saves a migration file although nothing has changed with the following contents:
import { Migration } from 'mikro-orm';
export class Migration20200312115106 extends Migration {
async up(): Promise<void> {
}
}
Describe the solution you'd like
Don't store migrations without any changes, maybe have an option to disable storing empty migrations?
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When running migrations automatically on file changes, it saves a migration file although nothing has changed with the following contents:
Describe the solution you'd like
Don't store migrations without any changes, maybe have an option to disable storing empty migrations?
The text was updated successfully, but these errors were encountered: