From e827f478342740060434089603001b4cd1e303d1 Mon Sep 17 00:00:00 2001 From: Asaf Gartner Date: Mon, 12 Apr 2021 17:12:57 +0300 Subject: [PATCH] Corrected some comments. --- src/migration/migration.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/migration/migration.go b/src/migration/migration.go index d2470819..252273cf 100644 --- a/src/migration/migration.go +++ b/src/migration/migration.go @@ -284,8 +284,7 @@ func MakeMigration(name, description string) { } // Applies a cloned db to the local db. -// Drops the db and runs migrations from scratch. -// Applies the seed after the migration specified in `afterMigration`, then runs the rest of the migrations. +// Applies the seed after the migration specified in `afterMigration`. func SeedFromFile(seedFile string, afterMigration types.MigrationVersion) { file, err := os.Open(seedFile) if err != nil {