mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 23:14:36 +01:00
move migration out of existing file
This commit is contained in:
@@ -9,6 +9,5 @@ ALTER TABLE characters
|
||||
DROP COLUMN platedata,
|
||||
DROP COLUMN platemyset,
|
||||
DROP COLUMN rengokudata;
|
||||
DROP COLUMN savemercenary;
|
||||
|
||||
END;
|
||||
@@ -9,6 +9,5 @@ ALTER TABLE characters
|
||||
ADD COLUMN platedata bytea,
|
||||
ADD COLUMN platemyset bytea,
|
||||
ADD COLUMN rengokudata bytea;
|
||||
ADD COLUMN savemercenary bytea;
|
||||
|
||||
END;
|
||||
6
migrations/000006_mercenary.down.sql
Normal file
6
migrations/000006_mercenary.down.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE characters
|
||||
DROP COLUMN savemercenary;
|
||||
|
||||
END;
|
||||
6
migrations/000006_mercenary.up.sql
Normal file
6
migrations/000006_mercenary.up.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE characters
|
||||
ADD COLUMN savemercenary bytea,
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user