Skip to content

Commit

Permalink
Renamed delete-migration to delete-migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
budu committed Aug 21, 2011
1 parent a3fd19c commit 1d3a576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lobos/migration.clj
Expand Up @@ -189,7 +189,7 @@
(compiler/as-identifier db-spec *migrations-table* sname)
(map str names)))))

(defn delete-migration
(defn delete-migrations
[db-spec sname & names]
(when-not (empty? names)
(conn/with-connection db-spec
Expand Down Expand Up @@ -229,7 +229,7 @@
(insert-migrations db-spec sname name))
(do
(down migration)
(delete-migration db-spec sname name))))))))
(delete-migrations db-spec sname name))))))))

(defn dump* [db-spec sname name msg actions]
(append-to-mfile name msg
Expand Down

0 comments on commit 1d3a576

Please sign in to comment.