about summary refs log tree commit diff
path: root/db_actions.go
diff options
context:
space:
mode:
Diffstat (limited to 'db_actions.go')
-rw-r--r--db_actions.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/db_actions.go b/db_actions.go
index a45c562..6d3fe0f 100644
--- a/db_actions.go
+++ b/db_actions.go
@@ -1288,13 +1288,6 @@ func InitStarsTable(db *sql.DB) {
     vy numeric,
     m numeric
 )
-WITH (
-    OIDS = FALSE
-)
-TABLESPACE pg_default;
-
-ALTER TABLE public.stars
-    OWNER to postgres;
 `
 	err := db.QueryRow(query)
 	if err != nil {
@@ -1316,13 +1309,6 @@ func InitNodesTable(db *sql.DB) {
 		center_of_mass numeric[] NOT NULL,
 		subnodes bigint[] NOT NULL
 	)
-	WITH (
-		OIDS = FALSE
-	)
-	TABLESPACE pg_default;
-
-	ALTER TABLE public.nodes
-	OWNER to postgres;
 `
 	err := db.QueryRow(query)
 	if err != nil {