Fix migration file formatting

This commit is contained in:
jvyden 2021-10-17 21:10:05 -04:00
commit 6b0f16c747
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
6 changed files with 5 additions and 4 deletions

View file

@ -27,4 +27,4 @@ create table Users
); );
alter table Users alter table Users
add primary key (UserId); add primary key (UserId);

View file

@ -19,3 +19,4 @@ alter table Locations
modify Id int auto_increment; modify Id int auto_increment;

View file

@ -34,3 +34,4 @@ alter table Slots
alter table Slots alter table Slots
modify CreatorId int not null after LocationId; modify CreatorId int not null after LocationId;

View file

@ -18,4 +18,3 @@ alter table Comments
alter table Comments alter table Comments
modify CommentId int auto_increment; modify CommentId int auto_increment;

View file

@ -1 +1 @@
ALTER TABLE Slots MODIFY AuthorLabels TEXT NULL; ALTER TABLE Slots MODIFY AuthorLabels TEXT NULL;

View file

@ -1 +1 @@
ALTER TABLE Users ADD COLUMN PlanetHash text not null ALTER TABLE Users ADD COLUMN PlanetHash text not null;