Closed dmerejkowsky closed 4 years ago
Done by using CREATE TABLE IF NOT EXISTS instead of just CREATE TABLE in collection.createTable
CREATE TABLE IF NOT EXISTS
CREATE TABLE
collection.createTable
Rationale: when you implement continuous delivery with different environments, you can run migrator init at each deployment without having it fail.
migrator init
Thanks
Done by using
CREATE TABLE IF NOT EXISTS
instead of justCREATE TABLE
incollection.createTable
Rationale: when you implement continuous delivery with different environments, you can run
migrator init
at each deployment without having it fail.