@shizuoka-its/core 1.0.0 → 1.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shizuoka-its/core",
3
- "version": "1.0.0",
3
+ "version": "1.1.0-alpha.0",
4
4
  "description": "ITS core library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "exhibits" ADD COLUMN "markdown_content" TEXT;
@@ -52,6 +52,7 @@ model Exhibit {
52
52
  id String @id @default(uuid())
53
53
  name String
54
54
  description String?
55
+ markdownContent String? @map("markdown_content")
55
56
  url String?
56
57
  // リレーション
57
58
  eventId String @map("event_id")