0 votes

I would like to import existing database from a postgres server

Any ready solutions?

in How To & Manuals by (160 points)
recategorized by

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.

by Skipper developer (141k points)
selected by

Thanks, i'll try that way