2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00

Remove the original migration change

This commit is contained in:
Ryan Emerle 2022-04-25 09:10:51 -04:00
parent 5e6e33769f
commit 6f1b9ba8ae
No known key found for this signature in database
GPG Key ID: C0D34C592AED41CE
3 changed files with 4 additions and 15 deletions

4
.gitignore vendored
View File

@ -37,3 +37,7 @@ quickstart/data
**/*cache*
**/artifacts/
**/.env.overrides
**/node_modules
.run
**/*.zip
**/*.log

View File

@ -1,6 +0,0 @@
CREATE SCHEMA IF NOT EXISTS ${dbName};
USE ${dbName};
ALTER TABLE recordset ADD COLUMN data_hash VARCHAR(40) NOT NULL;
CREATE INDEX data_hash_index ON recordset (data_hash);

View File

@ -1,9 +0,0 @@
CREATE SCHEMA IF NOT EXISTS ${dbName};
USE ${dbName};
/*
Removing recordSet blob hash column and index in recordset table as its been no longer use
*/
ALTER TABLE recordset DROP COLUMN data_hash;