From c9bd1ce5adc226c572baa7b5e103e59af80351b1 Mon Sep 17 00:00:00 2001 From: Nick Douma Date: Thu, 18 Jun 2020 13:51:50 +0200 Subject: [PATCH] Remove duplicate PRIMARY KEY statement --- docs/backends/generic-postgresql.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/backends/generic-postgresql.rst b/docs/backends/generic-postgresql.rst index c9f27c19a3..15e0b76b94 100644 --- a/docs/backends/generic-postgresql.rst +++ b/docs/backends/generic-postgresql.rst @@ -141,14 +141,14 @@ Given the normal pgsql schema, change the following: -- Before CREATE TABLE domains ( - id SERIAL PRIMARY KEY, - ... + id SERIAL PRIMARY KEY, + -- } -- After CREATE TABLE domains ( - id INT PRIMARY KEY DEFAULT nextval('domain_id') PRIMARY KEY, - ... + id INT DEFAULT nextval('domain_id') PRIMARY KEY, + -- ); -- 2.47.2