chore(release): 0.3.4 v0.3.4
authorxangelo <me@xangelo.ca>
Wed, 6 Sep 2023 17:31:14 +0000 (13:31 -0400)
committerxangelo <me@xangelo.ca>
Wed, 6 Sep 2023 17:31:14 +0000 (13:31 -0400)
CHANGELOG.md
migrations/20230906155222_monster-variants.ts [new file with mode: 0644]
package-lock.json
package.json

index 947be5b3864157382de7671d5146e664dd3c5f48..2e3b88aa3acc1e2d8288d25c2b8d79417e87d86c 100644 (file)
@@ -2,6 +2,13 @@
 
 All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
 
 
 All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
 
+### [0.3.4](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.4;hp=v0.3.3;ds=sidebyside) (2023-09-06)
+
+
+### Bug Fixes
+
+* add missing migration d7268ba
+
 ### [0.3.3](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.3;hp=v0.3.2;ds=sidebyside) (2023-09-06)
 
 
 ### [0.3.3](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.3;hp=v0.3.2;ds=sidebyside) (2023-09-06)
 
 
diff --git a/migrations/20230906155222_monster-variants.ts b/migrations/20230906155222_monster-variants.ts
new file mode 100644 (file)
index 0000000..7e863f9
--- /dev/null
@@ -0,0 +1,16 @@
+import { Knex } from "knex";
+
+
+export async function up(knex: Knex): Promise<void> {
+  return knex.schema.alterTable('fight', function(table) {
+    table.string('variant').defaultTo(null);
+  });
+}
+
+
+export async function down(knex: Knex): Promise<void> {
+  return knex.schema.alterTable('fight', function(table) {
+    table.dropColumn('variant');
+  });
+}
+
index bf0c89334b599fd2e016c0e21cc0c78a2f3bb6af..e59b806d5d63fd7f18eb4a85f752d450edeff769 100644 (file)
@@ -1,12 +1,12 @@
 {
   "name": "rising-legends",
 {
   "name": "rising-legends",
-  "version": "0.3.3",
+  "version": "0.3.4",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "rising-legends",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "rising-legends",
-      "version": "0.3.3",
+      "version": "0.3.4",
       "dependencies": {
         "@honeycombio/opentelemetry-node": "^0.4.0",
         "@opentelemetry/auto-instrumentations-node": "^0.37.0",
       "dependencies": {
         "@honeycombio/opentelemetry-node": "^0.4.0",
         "@opentelemetry/auto-instrumentations-node": "^0.37.0",
index fe8ae1261ae6aafe284add8663c12c773c1f5017..5416f4b3ee5580afd29fb32c710b6a03e48705d4 100644 (file)
@@ -1,7 +1,7 @@
 {
   "name": "rising-legends",
   "private": true,
 {
   "name": "rising-legends",
   "private": true,
-  "version": "0.3.3",
+  "version": "0.3.4",
   "scripts": {
     "up": "npx prisma migrate dev --name \"init\"",
     "start": "pm2 start dist/server/api.js",
   "scripts": {
     "up": "npx prisma migrate dev --name \"init\"",
     "start": "pm2 start dist/server/api.js",