From f8dda5afd6a1be001aeaf23c78b22dee82df8375 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Wed, 20 Nov 2013 00:10:48 -0800 Subject: [PATCH] Missing comma --- .../src/org/whispersystems/textsecure/directory/Directory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/org/whispersystems/textsecure/directory/Directory.java b/library/src/org/whispersystems/textsecure/directory/Directory.java index 571c765b05..dac6f14165 100644 --- a/library/src/org/whispersystems/textsecure/directory/Directory.java +++ b/library/src/org/whispersystems/textsecure/directory/Directory.java @@ -36,7 +36,7 @@ public class Directory { private static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + "(" + ID + " INTEGER PRIMARY KEY, " + TOKEN + " TEXT UNIQUE, " + REGISTERED + " INTEGER, " + - RELAY + " TEXT " + + RELAY + " TEXT, " + SUPPORTS_SMS + " INTEGER, " + TIMESTAMP + " INTEGER);";