I was looking for the answer, but I couldn't find it. In PostgreSQL I have primary key, which is autofield which is BigInt type. In url path I have to reference it with something like "int:pk". If I use int for this purpose, will I fall in trouble later on, when numbers will exceed the limits of integer type? Which type I better use for bigint in url? It doesn't take BigInt or BigIntegerField, which are Django's type for bigint. Do I have to use patterns like <'$> instead of int? Thank you for the help!