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",
"version": "1.2.0",
"version": "1.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "my-links",
"version": "1.2.0",
"version": "1.2.1",
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.6",
"@prisma/client": "^5.12.1",

View File

@@ -1,6 +1,6 @@
{
"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",
"private": false,
"scripts": {

View File

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