channeldb: modify base DB version to start at 0, not 1

This commit is contained in:
Olaoluwa Osuntokun 2016-11-27 18:37:05 -08:00
parent 1e710b73a0
commit 5b2f9a5b69
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -37,7 +37,7 @@ var (
dbVersions = []version{
{
// The base DB version requires no migration.
number: 1,
number: 0,
migration: nil,
},
}