Comment on Show HN: Stellar – Git for PostreSQL and MySQLparentComments−sciurus12yFor those curious, on PostgreSQL it executes CREATE DATABASE "snapshot" WITH TEMPLATE "source"; and on MySQL it loops creates the new database and loops over all the tables running INSERT INTO snapshot.table SELECT * FROM source.table; https://github.com/fastmonkeys/stellar/blob/master/stellar/o...
Comments
For those curious, on PostgreSQL it executes
and on MySQL it loops creates the new database and loops over all the tables running https://github.com/fastmonkeys/stellar/blob/master/stellar/o...