shi.gg
shi.gg
Explore posts from servers
AOAnswer Overflow
Created by shi.gg on 3/6/2025 in #questions
Retroactive indexing
I used to use @Answer Overflow around early/mid 2023 and had removed it since. Now I added the bot again (with the same channel) and was wondering if it would index posts from the time between the bot was removed and now. I have "Consider all messages public" and indexing enabled.
3 replies
KKysely
Created by shi.gg on 8/7/2023 in #help
Migrate beyond 9 (to `10-...`)
No description
5 replies
KKysely
Created by shi.gg on 7/28/2023 in #help
Using `.orderBy` in JSON
Hey, I have a schema that roughly looks like this
export interface Member {
id: string;

activity: {
messages: number;
};
}
export interface Member {
id: string;

activity: {
messages: number;
};
}
and I want to query the db like that it gives me the top 10 Members with the highest activity.messages count. I figured out how I can orderBy but not inside of a json.
31 replies
KKysely
Created by shi.gg on 7/13/2023 in #help
Deleting multiple rows at once
I have a question, if I have like
await db
.deleteFrom('person')
.where('groupId', '=', id)
.execute();
await db
.deleteFrom('person')
.where('groupId', '=', id)
.execute();
would that delete ALL persons that have that groupId, or just one of them?
5 replies
KKysely
Created by shi.gg on 6/25/2023 in #help
JSON in columns (postgresql)
Hey <a:YA_Wave:743393941369651201> I am completely new to using SQL databases and have a (hopefully) simple question. I want to store JSON inside a column and want to make certain keys not null and/or set a default value, how would I do that? In this case, I have a language column and want to set a default value for the locale key This is my UserTable type:
export interface UserTable {
_id: Generated<Buffer>
userId: string;

language: {
locale: string;
// other things
};

created_at: ColumnType<Date, string, never>
}
export interface UserTable {
_id: Generated<Buffer>
userId: string;

language: {
locale: string;
// other things
};

created_at: ColumnType<Date, string, never>
}
This is the current state of my migrations/0-initials.ts
import { ColumnDefinitionBuilder, Kysely, sql } from "kysely";

export async function up(db: Kysely<any>): Promise<void> {

await db.schema
.createTable("users")
.addColumn("_id", sql`binary(16)`, (col: ColumnDefinitionBuilder) => col.primaryKey().defaultTo(sql`(uuid_to_bin(uuid()))`))
.addColumn("userId", "varchar(40)", (col) => col.notNull().unique())

// how would I add a default value to 'language.locale' ?
.addColumn("language", "json", (col) => col)

.execute();

}
import { ColumnDefinitionBuilder, Kysely, sql } from "kysely";

export async function up(db: Kysely<any>): Promise<void> {

await db.schema
.createTable("users")
.addColumn("_id", sql`binary(16)`, (col: ColumnDefinitionBuilder) => col.primaryKey().defaultTo(sql`(uuid_to_bin(uuid()))`))
.addColumn("userId", "varchar(40)", (col) => col.notNull().unique())

// how would I add a default value to 'language.locale' ?
.addColumn("language", "json", (col) => col)

.execute();

}
(stripped things away that are not needed for this post) Thanks love
10 replies
AOAnswer Overflow
Created by shi.gg on 5/27/2023 in #feedback
Error marking messages as answer
No description
22 replies
AOAnswer Overflow
Created by shi.gg on 5/22/2023 in #feedback
Not showing Bot messages
No description
5 replies
Invalid emotes in prompt
Error during /prompt
14 replies
Cannot create Tickets
This issue is caused by a Discord limitation I have never noticed in the last 1.5 years, it limits the max channels per category to 50. Future fixes that will be made: - Propper error message for users - A way to not use a category at all for tickets
24 replies
How to create a post correctly
- 1st. You check if a post with your issue exists already. - 2nd. If not, select the bot you need help with as a tag. - 3rd. Explain all the steps you have done, and what the exact issue is. https://c.lunish.nl/r/PX3S6j.mp4
1 replies