Home Documentation Download Pricing Buy Now

[Answered] Is where a way to import from existing postgres database connection

0 votes

I would like to import existing database from a postgres server

Any ready solutions?

asked Mar 26, 2017 in How To & Manuals by Andy Jakson (160 points)
recategorized Mar 27, 2017 by Andy Jakson

1 Answer

0 votes
 
Best answer

Unfortunately, Skipper doesn't contain any logic to import data from the database (because it's ORM tool, not DB one).

The best way how to achieve this is to let your ORM to import it from DB (for example Doctrine2 has built-in tools for that) and then import schema files from Doctrine importer to Skipper.

answered Mar 27, 2017 by ludek.vodicka Skipper developer (140,530 points)
selected Mar 27, 2017 by Andy Jakson

Thanks, i'll try that way

...