We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4097eb commit ab20a47Copy full SHA for ab20a47
1 file changed
scripts/world.sql
@@ -10,7 +10,7 @@ BEGIN;
10
SET client_encoding TO 'UTF8';
11
12
CREATE TABLE city (
13
- id integer GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
+ id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
14
name text NOT NULL,
15
country_code character(3) NOT NULL,
16
district text NOT NULL,
@@ -44,7 +44,7 @@ CREATE TABLE country (
44
local_name text NOT NULL,
45
government_form text NOT NULL,
46
head_of_state text,
47
- capital integer,
+ capital bigint,
48
code2 character(2) NOT NULL
49
);
50
0 commit comments