From 97e7a0bf03da233653a92f81bf4c6a8263ad5356 Mon Sep 17 00:00:00 2001 From: Pavan Mandava Date: Fri, 24 Jan 2020 00:40:14 +0100 Subject: [PATCH] All Schema related files at one place --- {xml_parser => schema}/book.xsd | 0 {db_schema => schema}/db_schema.pdf | Bin {db_schema => schema}/db_schema.png | Bin db_schema/db_schema.sql => schema/db_schema_ddl.sql | 0 utils/constants.py | 2 +- 5 files changed, 1 insertion(+), 1 deletion(-) rename {xml_parser => schema}/book.xsd (100%) rename {db_schema => schema}/db_schema.pdf (100%) rename {db_schema => schema}/db_schema.png (100%) rename db_schema/db_schema.sql => schema/db_schema_ddl.sql (100%) diff --git a/xml_parser/book.xsd b/schema/book.xsd similarity index 100% rename from xml_parser/book.xsd rename to schema/book.xsd diff --git a/db_schema/db_schema.pdf b/schema/db_schema.pdf similarity index 100% rename from db_schema/db_schema.pdf rename to schema/db_schema.pdf diff --git a/db_schema/db_schema.png b/schema/db_schema.png similarity index 100% rename from db_schema/db_schema.png rename to schema/db_schema.png diff --git a/db_schema/db_schema.sql b/schema/db_schema_ddl.sql similarity index 100% rename from db_schema/db_schema.sql rename to schema/db_schema_ddl.sql diff --git a/utils/constants.py b/utils/constants.py index 22ce12a..017a07d 100644 --- a/utils/constants.py +++ b/utils/constants.py @@ -1,6 +1,6 @@ JSON_PATH = 'json/books.json' -XSD_PATH = 'xml_parser/book.xsd' +XSD_PATH = 'schema/book.xsd' CSV_FILE = 'books_data.csv'