Created
July 26, 2017 12:01
-
-
Save sprejjs/f1e77720b971e5641c55961ad0c1bd68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static final String SQL_CREATE_ENTRIES = | |
| "CREATE TABLE " + MemoryContract.MemoryEntry.TABLE_NAME + " (" + | |
| MemoryContract.MemoryEntry._ID + INTEGER_TYPE + " PRIMARY KEY" + COMMA_SEP + | |
| MemoryContract.MemoryEntry.COLUMN_IMAGE + TEXT_TYPE + COMMA_SEP + | |
| MemoryContract.MemoryEntry.COLUMN_TITLE + TEXT_TYPE + " )"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment