11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import type { MigrationConfig } from './src/lib/types'
|
|
|
|
const config: MigrationConfig = {
|
|
from: 'postgres',
|
|
to: 'sqlite',
|
|
source: 'postgresql://postgres:meatfarmer_master_password@57.128.212.174:7447/meatfarmer' ,
|
|
target: './sqlite.db',
|
|
batchSize: 500,
|
|
}
|
|
|
|
export default config
|