fix: merge changes from staging

This commit is contained in:
RaktimaNXG
2024-05-29 16:07:05 +05:30
23 changed files with 990 additions and 716 deletions
@@ -7,6 +7,7 @@ exports.up = async Parse => {
const className = 'contracts_Template';
const schema = new Parse.Schema(className);
schema.addArray('PublicRole');
schema.addBoolean('IsPublic');
// TODO: Set the schema here
// Example:
@@ -24,6 +25,7 @@ exports.down = async Parse => {
const className = 'contracts_Template';
const schema = new Parse.Schema(className);
schema.deleteField('PublicRole');
schema.deleteField('IsPublic');
// TODO: Set the schema here
// Example: