diff options
author | Marty McGuire <schmartissimo@gmail.com> | 2019-06-30 13:43:37 -0700 |
---|---|---|
committer | Marty McGuire <schmartissimo@gmail.com> | 2019-06-30 13:43:37 -0700 |
commit | 1fc6bdb3c96e777ce55d62a5daa241337c73226c (patch) | |
tree | 686abf33f2909f85d61201df1a4440411a1e4bb4 | |
parent | f8b122256fde859861553f441c3b63f3d35cfeb9 (diff) |
remove trailing comma in sqlite schema
-rw-r--r-- | schema/sqlite.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/sqlite.sql b/schema/sqlite.sql index 948b3ef..8eaa7b0 100644 --- a/schema/sqlite.sql +++ b/schema/sqlite.sql @@ -24,5 +24,5 @@ CREATE TABLE users ( instagram_access_token TEXT, email_username TEXT, default_timezone TEXT, - supported_post_types TEXT, + supported_post_types TEXT ); |