Fix dev user seed: ID was used twice.
Created by: cirosantilli
Was causing the command rake gitlab:setup
to fail if you run it twice.
Cause: the user count was incremented above from 10 to 20, and the seed below was not DRY (repeated 10
) and was not changed. Now it is DRY.