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

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

I would like to import existing database from a postgres server

Any ready solutions?

1 Answer

0 votes
answered Mar 27, 2017 by ludek.vodicka Skipper developer (140,450 points)
selected Mar 27, 2017 by Andy Jakson
 
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.

commented Mar 27, 2017 by Andy Jakson (160 points)

Thanks, i'll try that way

...