summary refs log tree commit diff
path: root/src/util/migration/postgres/1696420827239-guildChannelOrdering.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/migration/postgres/1696420827239-guildChannelOrdering.ts')
-rw-r--r--src/util/migration/postgres/1696420827239-guildChannelOrdering.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/migration/postgres/1696420827239-guildChannelOrdering.ts b/src/util/migration/postgres/1696420827239-guildChannelOrdering.ts
index 82085991..6fc80ffd 100644
--- a/src/util/migration/postgres/1696420827239-guildChannelOrdering.ts
+++ b/src/util/migration/postgres/1696420827239-guildChannelOrdering.ts
@@ -11,7 +11,7 @@ export class guildChannelOrdering1696420827239 implements MigrationInterface {
 		);
 
 		await queryRunner.query(
-			`ALTER TABLE guilds ADD channelOrdering text NOT NULL DEFAULT '[]'`,
+			`ALTER TABLE guilds ADD channel_ordering text NOT NULL DEFAULT '[]'`,
 		);
 
 		for (const guild_id of guilds.records.map((x) => x.id)) {
@@ -26,7 +26,7 @@ export class guildChannelOrdering1696420827239 implements MigrationInterface {
 			channels.sort((a, b) => a.position - b.position);
 
 			await queryRunner.query(
-				`UPDATE guilds SET channelOrdering = $1 WHERE id = $2`,
+				`UPDATE guilds SET channel_ordering = $1 WHERE id = $2`,
 				[JSON.stringify(channels.map((x) => x.id)), guild_id],
 			);
 		}