diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-01-02 16:14:03 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-01-02 16:14:03 +0100 |
commit | 85dcf3ba2fd0cf907610625399db691b274118bb (patch) | |
tree | 3fd041b1de19a9d3130be2045a7f9b9bd3a85fe0 /planetwars-server/migrations/2022-01-02-105610_matches/down.sql | |
parent | bdb77f97d6af5a59e80d2b2552cd6994754cbf29 (diff) | |
download | planetwars.dev-85dcf3ba2fd0cf907610625399db691b274118bb.tar.xz planetwars.dev-85dcf3ba2fd0cf907610625399db691b274118bb.zip |
store matches in database
Diffstat (limited to 'planetwars-server/migrations/2022-01-02-105610_matches/down.sql')
-rw-r--r-- | planetwars-server/migrations/2022-01-02-105610_matches/down.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-01-02-105610_matches/down.sql b/planetwars-server/migrations/2022-01-02-105610_matches/down.sql new file mode 100644 index 0000000..eadd0fa --- /dev/null +++ b/planetwars-server/migrations/2022-01-02-105610_matches/down.sql @@ -0,0 +1,3 @@ +DROP TABLE match_players; +DROP INDEX match_created_at; +DROP TABLE matches;
\ No newline at end of file |