diff options
author | Aaron Parecki <aaron@parecki.com> | 2019-06-30 13:55:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-30 13:55:23 -0700 |
commit | efe16c375a202cff5c2b07e3c7fb273a2e8bec16 (patch) | |
tree | 686abf33f2909f85d61201df1a4440411a1e4bb4 | |
parent | f8b122256fde859861553f441c3b63f3d35cfeb9 (diff) | |
parent | 1fc6bdb3c96e777ce55d62a5daa241337c73226c (diff) |
Merge pull request #110 from martymcguire/mm-sqlite-schema-comma
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 ); |