mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-02 05:08:57 +02:00
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
/**
|
|
*
|
|
* @param {Parse} Parse
|
|
*/
|
|
exports.up = async Parse => {
|
|
// TODO: set className here
|
|
const className = 'Contracts_Users';
|
|
const schema = new Parse.Schema(className);
|
|
schema.addString('Name');
|
|
schema.addString('Phone');
|
|
schema.addString('JobTitle');
|
|
schema.addString('Email');
|
|
schema.addString('Company');
|
|
schema.addString('UserRole');
|
|
schema.addObject('Plan');
|
|
schema.addString('Customer_id');
|
|
schema.addString('Subscription_id');
|
|
schema.addString('Next_billing_date');
|
|
schema.addBoolean('IsContactEntry');
|
|
schema.addBoolean('ShareWithTeam');
|
|
schema.addPointer('TenantId', 'partners_Tenant');
|
|
schema.addPointer('UserId', '_User');
|
|
schema.addPointer('CreatedBy', '_User');
|
|
schema.setCLP({
|
|
get: {},
|
|
find: {},
|
|
count: {},
|
|
create: { '*': true },
|
|
update: { '*': true },
|
|
delete: {},
|
|
addField: {},
|
|
});
|
|
|
|
return schema.save();
|
|
|
|
// const config = new Config(process.env.APP_ID, process.env.PARSE_MOUNT);
|
|
// const schema = await config.database.loadSchema();
|
|
// await schema.setPermissions('myclass', {
|
|
// get: { requiresAuthentication: true },
|
|
// find: { requiresAuthentication: true },
|
|
// count: { requiresAuthentication: true },
|
|
// create: { requiresAuthentication: true },
|
|
// update: { requiresAuthentication: true },
|
|
// delete: { requiresAuthentication: true },
|
|
// addField: {},
|
|
// });
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param {Parse} Parse
|
|
*/
|
|
exports.down = async Parse => {
|
|
// TODO: set className here
|
|
const className = 'Contracts_Users';
|
|
const schema = new Parse.Schema(className);
|
|
|
|
return schema.purge().then(() => schema.delete());
|
|
};
|