feat: improve ux and security
This commit is contained in:
@@ -4,6 +4,6 @@ export const links = sqliteTable("links", {
|
||||
id: integer("id").primaryKey({ autoIncrement: true }),
|
||||
name: text("name").notNull().unique(),
|
||||
path: text("path").notNull().unique(),
|
||||
url: text("url").notNull().unique(),
|
||||
url: text("url").notNull(),
|
||||
disabled: integer("disabled", { mode: "boolean" }).notNull().default(false),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user