mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-27 01:53:19 +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 platedata,
|
||||||
DROP COLUMN platemyset,
|
DROP COLUMN platemyset,
|
||||||
DROP COLUMN rengokudata;
|
DROP COLUMN rengokudata;
|
||||||
DROP COLUMN savemercenary;
|
|
||||||
|
|
||||||
END;
|
END;
|
||||||
@@ -9,6 +9,5 @@ ALTER TABLE characters
|
|||||||
ADD COLUMN platedata bytea,
|
ADD COLUMN platedata bytea,
|
||||||
ADD COLUMN platemyset bytea,
|
ADD COLUMN platemyset bytea,
|
||||||
ADD COLUMN rengokudata bytea;
|
ADD COLUMN rengokudata bytea;
|
||||||
ADD COLUMN savemercenary bytea;
|
|
||||||
|
|
||||||
END;
|
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