ensures the migration table's seed is higher than 1 (have put it to 100).

This commit is contained in:
Shannon
2015-11-13 11:31:59 +01:00
parent f32479bb10
commit ec247d2b27

View File

@@ -11,7 +11,7 @@ namespace Umbraco.Core.Models.Rdbms
internal class MigrationDto
{
[Column("id")]
[PrimaryKeyColumn(AutoIncrement = true)]
[PrimaryKeyColumn(AutoIncrement = true, IdentitySeed = 100)]
public int Id { get; set; }
[Column("name")]