Skip to content

Commit

Permalink
update table names
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiAF committed Feb 9, 2024
1 parent 85a8a60 commit b94b1a4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion schemas/badgeusers.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `badgeusers` (
create table if not exists `badgeUsers` (
`id` int NOT NULL AUTO_INCREMENT,
`createdAt` bigint DEFAULT NULL,
`badgeId` char(36) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/labycapes.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE TABLE IF NOT EXISTS `labycapes` (
CREATE TABLE IF NOT EXISTS `labyCapes` (
`id` int NOT NULL AUTO_INCREMENT,
`createdAt` bigint DEFAULT NULL,
`capeId` char(36) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/linkedAccounts.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `linkedaccounts` (
create table if not exists `linkedAccounts` (
`id` int NOT NULL AUTO_INCREMENT,
`accountId` char(30) NOT NULL,
`createdAt` bigint DEFAULT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/profileCapes.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `profilecapes` (
create table if not exists `profileCapes` (
`id` int NOT NULL AUTO_INCREMENT,
`capeId` char(36) NOT NULL,
`uuid` char(32) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/profileLBCapes.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `profilelbcapes` (
create table if not exists `profileLBCapes` (
`id` int NOT NULL AUTO_INCREMENT,
`capeId` char(36) NOT NULL,
`uuid` char(32) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/profileMCCapes.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `profilemccapes` (
create table if not exists `profileMCCapes` (
`id` int NOT NULL AUTO_INCREMENT,
`capeId` char(36) NOT NULL,
`uuid` char(32) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/profileNames.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `profilenames` (
create table if not exists `profileNames` (
`id` int NOT NULL AUTO_INCREMENT,
`uuid` char(32) NOT NULL,
`username` char(32) DEFAULT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/profileOFCapes.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `profileofcapes` (
create table if not exists `profileOFCapes` (
`id` int NOT NULL AUTO_INCREMENT,
`capeId` char(36) NOT NULL,
`uuid` char(32) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion schemas/profileSkins.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create table if not exists `profileskins` (
create table if not exists `profileSkins` (
`id` int NOT NULL AUTO_INCREMENT,
`skinId` char(36) NOT NULL,
`uuid` char(32) NOT NULL,
Expand Down

0 comments on commit b94b1a4

Please sign in to comment.