From 9a987597aaf367c5a3b2fa291f6420569147f1b4 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Wed, 26 Mar 2014 07:44:08 +0200 Subject: [PATCH] Add phone column to users --- db.sql | 1 + redis-to-postgres | 1 + 2 files changed, 2 insertions(+) diff --git a/db.sql b/db.sql index 3a43eb5..e4decc2 100644 --- a/db.sql +++ b/db.sql @@ -8,6 +8,7 @@ CREATE TABLE users ( id TEXT PRIMARY KEY, name TEXT, -- NOT NULL, email TEXT, -- NOT NULL, + phone TEXT, -- NOT NULL, town TEXT, -- NOT NULL, university TEXT, -- NOT NULL, level TEXT, --ULEVEL NOT NULL, diff --git a/redis-to-postgres b/redis-to-postgres index 979f324..e744c05 100755 --- a/redis-to-postgres +++ b/redis-to-postgres @@ -12,6 +12,7 @@ for (users) { id => $_, name => user_name, email => user_email, + phone => user_phone, town => user_town, university => user_university, level => user_level, -- 2.30.2