Primary keys are 'unique' by default. That means that setting a default value is useless because you may not ever insert the same value twice.
The 54869 is probably generated by the database itself, either through setting the column to 'auto_increment' (mysql) or serial (informix/postgres/oracle)
That wil automatically generate a new and unique number to be inserted into the primarykey field.