Samir
Samir
Explore posts from servers
CDCloudflare Developers
Created by Samir on 3/27/2025 in #general-help
Guide for API Security
Basically, I have a SaaS. Mostly part is through my API endpoints. Is there any better guide to protect my API and make it reachable to people because most of the time, I'm getting Just a moment... bot checking thing even if I do fetch through curl or fetch api. I'm on enterprises plan btw, thanks
2 replies
DTDrizzle Team
Created by Samir on 4/2/2024 in #help
Issue with push command
No description
2 replies
DTDrizzle Team
Created by Samir on 12/16/2023 in #help
Migration issue with PostgresSQL
I'm trying to migrate
export const postLikeTable = pgTable(
"post_like",
{
postId: text("post_id")
.references(() => postTable.id, { onDelete: "cascade" })
.notNull(),
userId: text("user_id")
.references(() => userTable.id, { onDelete: "cascade" })
.notNull(),
},
(self) => ({
pk: primaryKey({ columns: [self.postId, self.userId] }),
})
);
export const postLikeTable = pgTable(
"post_like",
{
postId: text("post_id")
.references(() => postTable.id, { onDelete: "cascade" })
.notNull(),
userId: text("user_id")
.references(() => userTable.id, { onDelete: "cascade" })
.notNull(),
},
(self) => ({
pk: primaryKey({ columns: [self.postId, self.userId] }),
})
);
But it says PostgresError: foreign key constraint "post_like_post_id_post_id_fk" cannot be implemented code: "42804"
3 replies
CDCloudflare Developers
Created by Samir on 12/13/2023 in #general-help
Site's metadata with WAF protection
I want to add WAF protection to my site. But after adding that, It does not allow to show embed of meta data when shared on platforms like (discord, x, ..etc). I want to make it like https://unijoin.io when shared. It shows metadata and when opened on browser. It show WAF protected page
7 replies
DTDrizzle Team
Created by Samir on 10/26/2023 in #help
How would I get 2 unique values?
I got my post likes table.
export const postLike = sqliteTable(
"post_like",
{
postId: text("post_id")
.notNull()
.primaryKey()
.references(() => post.id),

userId: text("user_id")
.notNull()
.references(() => user.id),
},
(self) => ({
unq: unique("unique_post_likes").on(self.postId, self.userId),
})
);
export const postLike = sqliteTable(
"post_like",
{
postId: text("post_id")
.notNull()
.primaryKey()
.references(() => post.id),

userId: text("user_id")
.notNull()
.references(() => user.id),
},
(self) => ({
unq: unique("unique_post_likes").on(self.postId, self.userId),
})
);
But if I already have same post id with different user. It returns error "LibsqlError: SQLITE_CONSTRAINT: SQLite error: UNIQUE constraint failed: post_like.post_id"
7 replies
DTDrizzle Team
Created by Samir on 10/19/2023 in #help
Issue with DOM element types
When I install drizzle-orm to my NextJS app (app dir). It ruins typescript types of DOM elements.
11 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by stormy-gold on 4/22/2023 in #suggestion
Typescript Support
There aren't much typing support for TypeScript.
2 replies