aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAsbjørn Sloth Tønnesen <ast@fiberby.net>2019-09-07 13:03:58 +0000
committerAsbjørn Sloth Tønnesen <ast@fiberby.net>2019-09-07 13:03:58 +0000
commitba9677bb29a3a7db7618133be5e4e1a9248e5059 (patch)
treec8f444b8d43382c9b161fc25cb89205d54c2dc90
parent6b7297545b71fda63aff0a74e680660e8c22222b (diff)
downloadpeeringdb-simplesync-ba9677bb29a3a7db7618133be5e4e1a9248e5059.tar.gz
peeringdb-simplesync-ba9677bb29a3a7db7618133be5e4e1a9248e5059.tar.xz
peeringdb-simplesync-ba9677bb29a3a7db7618133be5e4e1a9248e5059.zip
schema: change asn to bigint
Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 593f4c2..f658f38 100644
--- a/schema.sql
+++ b/schema.sql
@@ -13,7 +13,7 @@ create table peeringdb.org (
create table peeringdb.net (
id int not null,
org_id int not null,
- asn int not null,
+ asn bigint not null,
status text not null,
data jsonb not null,
created timestamptz not null,