Save article statuses to new sync database as they are created

This commit is contained in:
Maurice Parker
2019-05-14 18:24:19 -05:00
parent f449ed9608
commit b1303661b2
15 changed files with 723 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
//
// Constants.swift
// SyncDatabase
//
// Created by Maurice Parker on 5/14/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import Foundation
struct DatabaseTableName {
static let syncStatus = "syncStatus"
}
struct DatabaseKey {
// Sync Status
static let articleID = "articleID"
static let key = "key"
static let flag = "flag"
static let selected = "selected"
}