UNPKG

leasehold-chain

Version:
28 lines (23 loc) 736 B
/* * Copyright © 2019 Lisk Foundation * * See the LICENSE file at the top-level directory of this distribution * for licensing information. * * Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation, * no part of this software, including this file, may be copied, modified, * propagated, or distributed except according to the terms contained in the * LICENSE file. * * Removal or modification of this copyright notice is prohibited. */ 'use strict'; const path = require('path'); const fs = require('fs-extra'); const updatesPath = path.join(__dirname, './sql'); const migrations = fs .readdirSync(updatesPath) .map(file => path.join(updatesPath, file)); module.exports = { migrations, };