-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Labels
area-migrationscommunity-contributioncustomer-reportedgood first issueThis issue should be relatively straightforward to fix.This issue should be relatively straightforward to fix.providers-beware
Milestone
Description
MSSQL, PostgreSQL and Firebird support "ALTER SEQUENCE {name} RESTART " without "WITH startValue" section
RestartSequenceOperation.StartValue requires definition of startValue:
efcore/src/EFCore.Relational/Migrations/Operations/RestartSequenceOperation.cs
Lines 27 to 30 in 252ece7
/// <summary> | |
/// The value at which the sequence should re-start, defaulting to 1. | |
/// </summary> | |
public virtual long StartValue { get; set; } = 1L; |
Why do not use Nullable<long> for this property?
Metadata
Metadata
Assignees
Labels
area-migrationscommunity-contributioncustomer-reportedgood first issueThis issue should be relatively straightforward to fix.This issue should be relatively straightforward to fix.providers-beware