summary refs log tree commit diff
path: root/src/util/entities/index.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-01-05 17:04:15 +1100
committerGitHub <noreply@github.com>2023-01-05 17:04:15 +1100
commite42eaeee8d6310c81de2e90280afe99f8e8674aa (patch)
treedb47e73433d38898b705e3d7e5fddc4e87a27f3d /src/util/entities/index.ts
parentMerge pull request #922 from MaddyUnderStars/maddy/bodyParserPatch (diff)
downloadserver-e42eaeee8d6310c81de2e90280afe99f8e8674aa.tar.xz
Add migrations (#923)
* Fix typeorm migration cli and server migrations.
* Add `migrate-from-staging` script
Diffstat (limited to '')
-rw-r--r--src/util/entities/index.ts13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/util/entities/index.ts b/src/util/entities/index.ts

index 40260ba4..dc509250 100644 --- a/src/util/entities/index.ts +++ b/src/util/entities/index.ts
@@ -1,19 +1,23 @@ export * from "./Application"; export * from "./Attachment"; export * from "./AuditLog"; +export * from "./BackupCodes"; export * from "./Ban"; export * from "./BaseClass"; export * from "./Categories"; +export * from "./ClientRelease"; export * from "./Channel"; export * from "./Config"; export * from "./ConnectedAccount"; export * from "./EmbedCache"; export * from "./Emoji"; +export * from "./Encryption"; export * from "./Guild"; export * from "./Invite"; export * from "./Member"; export * from "./Message"; export * from "./Migration"; +export * from "./Note"; export * from "./RateLimit"; export * from "./ReadState"; export * from "./Recipient"; @@ -26,10 +30,7 @@ export * from "./Team"; export * from "./TeamMember"; export * from "./Template"; export * from "./User"; -export * from "./VoiceState"; -export * from "./Webhook"; -export * from "./ClientRelease"; -export * from "./BackupCodes"; -export * from "./Note"; export * from "./UserSettings"; -export * from "./ValidRegistrationTokens"; \ No newline at end of file +export * from "./ValidRegistrationTokens"; +export * from "./VoiceState"; +export * from "./Webhook"; \ No newline at end of file