2 Commits
1.2.0 ... 1.2.1

Author SHA1 Message Date
Sonny
f79baf21c0 chore: release v1.2.1 2024-04-12 00:03:17 +02:00
Sonny
1068b6e057 fix: link description type in prisma schema 2024-04-12 00:02:34 +02:00
3 changed files with 7 additions and 7 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "my-links", "name": "my-links",
"version": "1.2.0", "version": "1.2.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "my-links", "name": "my-links",
"version": "1.2.0", "version": "1.2.1",
"dependencies": { "dependencies": {
"@ducanh2912/next-pwa": "^10.2.6", "@ducanh2912/next-pwa": "^10.2.6",
"@prisma/client": "^5.12.1", "@prisma/client": "^5.12.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "my-links", "name": "my-links",
"version": "1.2.0", "version": "1.2.1",
"description": "MyLinks is a free and open source software, that lets you manage your bookmarks in an intuitive interface", "description": "MyLinks is a free and open source software, that lets you manage your bookmarks in an intuitive interface",
"private": false, "private": false,
"scripts": { "scripts": {

View File

@@ -48,7 +48,7 @@ model Category {
model Link { model Link {
id Int @id @default(autoincrement()) id Int @id @default(autoincrement())
name String @db.VarChar(255) name String @db.VarChar(255)
description String @db.VarChar(255) description String? @db.VarChar(255)
url String @db.Text url String @db.Text
category Category @relation(fields: [categoryId], references: [id]) category Category @relation(fields: [categoryId], references: [id])