1// Copyright (C) 2019 Storj Labs, Inc.
2// See LICENSE for copying information.
3
4package storagenodedb
5
6// DeprecatedInfoDBName represents the database name.
7const DeprecatedInfoDBName = "info"
8
9// deprecatedInfoDB represents the database that contains the original legacy sqlite3 database.
10type deprecatedInfoDB struct {
11	dbContainerImpl
12}
13