We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a5d352 commit 0dd2414Copy full SHA for 0dd2414
src/main/scala/io/sdkman/changelogs/SkeletalMigrations.scala
@@ -0,0 +1,22 @@
1
+package io.sdkman.changelogs
2
+
3
+import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4
+import com.mongodb.client.MongoDatabase
5
6
+@ChangeLog(order = "074")
7
+class SkeletalMigrations {
8
9
+ @ChangeSet(
10
+ order = "001",
11
+ id = "001_add_skeletal_candidate",
12
+ author = "cbmarcum"
13
+ )
14
+ def migration001(implicit db: MongoDatabase) =
15
+ Candidate(
16
+ candidate = "skeletal",
17
+ name = "Skeletal",
18
+ description =
19
+ "Skeletal is a tool that allows you to create a new project structure for any framework or library for which the tool has a template.",
20
+ websiteUrl = "https://github.com/cbmarcum/skeletal"
21
+ ).insert()
22
+}
0 commit comments