Skip to content

Commit

Permalink
Merge pull request #5426 from stasic/postgres-bigint
Browse files Browse the repository at this point in the history
Postgres bigint
  • Loading branch information
Habbie committed Jul 13, 2017
2 parents 9d2039e + 7b28ba2 commit a080f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions modules/gpgsqlbackend/3.4.0_to_4.1.0_schema.pgsql.sql
@@ -0,0 +1 @@
ALTER TABLE records ALTER id TYPE BIGINT;
2 changes: 1 addition & 1 deletion modules/gpgsqlbackend/schema.pgsql.sql
Expand Up @@ -13,7 +13,7 @@ CREATE UNIQUE INDEX name_index ON domains(name);


CREATE TABLE records (
id SERIAL PRIMARY KEY,
id BIGSERIAL PRIMARY KEY,
domain_id INT DEFAULT NULL,
name VARCHAR(255) DEFAULT NULL,
type VARCHAR(10) DEFAULT NULL,
Expand Down

0 comments on commit a080f15

Please sign in to comment.