Set default to 3500 in that field for that table in the database
SQL:
ALTER TABLE table_name ALTER COLUMN rank SET DEFAULT 3500;
And if you want to update ALL current players that have rank = 0 to 3500
SQL:
UPDATE table_name SET rank = 3500 WHERE rank = 0
Change table_name to the name of the table obviously.