bump db because lodash-webpack-plugin broke it

This commit is contained in:
Nolan Lawson 2018-03-16 23:39:10 -07:00
parent 18c66d5655
commit b2f8f356ed
2 changed files with 10 additions and 10 deletions

View File

@ -1,12 +1,12 @@
export const STATUSES_STORE = 'statuses-v2'
export const STATUS_TIMELINES_STORE = 'status_timelines-v2'
export const META_STORE = 'meta-v2'
export const ACCOUNTS_STORE = 'accounts-v2'
export const RELATIONSHIPS_STORE = 'relationships-v2'
export const NOTIFICATIONS_STORE = 'notifications-v2'
export const NOTIFICATION_TIMELINES_STORE = 'notification_timelines-v2'
export const PINNED_STATUSES_STORE = 'pinned_statuses-v2'
export const THREADS_STORE = 'threads-v2'
export const STATUSES_STORE = 'statuses-v3'
export const STATUS_TIMELINES_STORE = 'status_timelines-v3'
export const META_STORE = 'meta-v3'
export const ACCOUNTS_STORE = 'accounts-v3'
export const RELATIONSHIPS_STORE = 'relationships-v3'
export const NOTIFICATIONS_STORE = 'notifications-v3'
export const NOTIFICATION_TIMELINES_STORE = 'notification_timelines-v3'
export const PINNED_STATUSES_STORE = 'pinned_statuses-v3'
export const THREADS_STORE = 'threads-v3'
export const TIMESTAMP = '__pinafore_ts'
export const ACCOUNT_ID = '__pinafore_acct_id'

View File

@ -18,7 +18,7 @@ import forEach from 'lodash/forEach'
const openReqs = {}
const databaseCache = {}
const DB_VERSION = 7
const DB_VERSION = 8
export function getDatabase (instanceName) {
if (!instanceName) {