Add phone column to users
authorMarius Gavrilescu <marius@ieval.ro>
Wed, 26 Mar 2014 05:44:08 +0000 (07:44 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Wed, 26 Mar 2014 05:44:08 +0000 (07:44 +0200)
db.sql
redis-to-postgres

diff --git a/db.sql b/db.sql
index 3a43eb5c99b0747c69acfea559de6cf99e50aece..e4decc24a2008c9036aa32d96c32de5b593f8814 100644 (file)
--- 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,
index 979f324ea57a6f437e33e94e418e86548056e8e0..e744c05f4a430c9c3744098fc6dd404d7e7b8e1d 100755 (executable)
@@ -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,
This page took 0.010981 seconds and 4 git commands to generate.