Unable to remove identity in ms sql server by removing @AutoIncrement

I have created an entity with

public interface CustomerEntity extends RawEntity {

@AutoIncrement
@NotNull
@PrimaryKey(CurrentStep.ID)
Long getId();


}

The table is created, now in next version of my plugin when i remove @AutoIncrement annotation, it does not work with MS SQL server

Any idea?

1 Like