File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import type { Kysely } from "kysely" ;
2+
3+ export async function up ( db : Kysely < any > ) : Promise < void > {
4+ await db . schema . dropTable ( "old_birthdays" ) . execute ( ) ;
5+ await db . schema . dropTable ( "old_stempels" ) . execute ( ) ;
6+ await db . schema . dropTable ( "old_splidLinks" ) . execute ( ) ;
7+ await db . schema . dropTable ( "old_splidGroups" ) . execute ( ) ;
8+ await db . schema . dropTable ( "old_guildRageQuits" ) . execute ( ) ;
9+ await db . schema . dropTable ( "old_penis" ) . execute ( ) ;
10+ await db . schema . dropTable ( "old_boobs" ) . execute ( ) ;
11+ await db . schema . dropTable ( "old_fadingMessages" ) . execute ( ) ;
12+ await db . schema . dropTable ( "old_woisActions" ) . execute ( ) ;
13+ await db . schema . dropTable ( "old_bans" ) . execute ( ) ;
14+ await db . schema . dropTable ( "old_reminders" ) . execute ( ) ;
15+ }
16+
17+ export async function down ( _db : Kysely < any > ) : Promise < void > {
18+ throw new Error ( "Not supported lol" ) ;
19+ }
You can’t perform that action at this time.
0 commit comments