The migration file name should be named yyyyMMddHHmm_MigrationAction.cs where:
yyyy the current year (e.g. 2022)
MM the current month (e.g. 05)
dd the current day (e.g. 06)
HH The current hour in 24h format (e.g. 15 or 03)
mm The current minute (e.g 58 or 08)
The time & date should be in UTC+0 in order to keep time and date consistency across time zones.
Migration version should be in the UNIX timestamp format. Number of seconds of the current epoch since 01.01.1970. The version is set in the attribute of the migration.
For example: [Migration(1666859869)]
The migration file name should be named
yyyyMMddHHmm_MigrationAction.cs
where:yyyy
the current year (e.g. 2022)MM
the current month (e.g. 05)dd
the current day (e.g. 06)HH
The current hour in 24h format (e.g. 15 or 03)mm
The current minute (e.g 58 or 08)The time & date should be in UTC+0 in order to keep time and date consistency across time zones.
Migration version should be in the UNIX timestamp format. Number of seconds of the current epoch since 01.01.1970. The version is set in the attribute of the migration. For example:
[Migration(1666859869)]