views:

15

answers:

0

I have an existing model in Google AppEngine declared as such:

@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;`

If I will to change the valueStrategy to IdGeneratorStrategy.IDENTITY, what will happen to existing records? Any side effects?