careerty-prism 1.0.31 → 1.0.32

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": "careerty-prism",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -11,6 +11,7 @@
11
11
  "prisma": {
12
12
  "seed": "ts-node others/seeder.ts"
13
13
  },
14
+
14
15
  "author": "",
15
16
  "license": "ISC",
16
17
  "devDependencies": {
@@ -0,0 +1,8 @@
1
+ /*
2
+ Warnings:
3
+
4
+ - Added the required column `name` to the `CV` table without a default value. This is not possible if the table is not empty.
5
+
6
+ */
7
+ -- AlterTable
8
+ ALTER TABLE `cv` ADD COLUMN `name` VARCHAR(191) NOT NULL;
@@ -316,6 +316,7 @@ model TemplateMeta {
316
316
  model CV {
317
317
  id Int @id @default(autoincrement())
318
318
  permalink String @unique
319
+ name String
319
320
  fullname String
320
321
  profile String @db.LongText
321
322
  address String