1.0.5 • Published 10 years ago

easy-postgresql-fixture v1.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

easy-postgresql-fixture

Build Status

Postgresql fixture manager for easy-fixture lib.

Example

var fixture = require('easy-fixture');
var PostgresFixture = require('easy-postgresql-fixture');

var postgresFixtrue = new PostgresFixture({
  database: 'test',
  dir: './fixtures',
  out: 'fixtures.sql'
});

// set manager to use
fixture.use(postgresFixtrue);

// collect data from postgresql database and save it to local file(s)
fixture.save().then(function () {
	console.log('ok');
});

// when we need to load fixture, call this method to read from fixture file,
// and to import wanted data
fixture.load().then(function () {
	console.log('ok')''
});

License

MIT

1.0.5

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.0

10 years ago