Skip to content

Commit 50745e9

Browse files
jandroavmarc0der
authored andcommitted
feat(liquibaseMigrations.scala): add LiquibaseMigrations class with migration001 method to insert Liquibase candidate into the database
1 parent c5d25c7 commit 50745e9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@ChangeLog(order = "036")
2+
class LiquibaseMigrations {
3+
@ChangeSet(order = "001", id = "001_add_liquibase_1_2_3", author = "jandroav")
4+
def migration001(implicit db: MongoDatabase) = {
5+
Candidate(
6+
candidate = "liquibase",
7+
name = "Liquibase",
8+
description = "Innovate faster with database DevOps. Automated, secure, and compliant database change management pipelines that accelerate delivery and reduce toil",
9+
websiteUrl = "https://liquibase.com/",
10+
distribution = "UNIVERSAL"
11+
).insert()
12+
}
13+
}

0 commit comments

Comments
 (0)