import TenantModel from 'models/TenantModel'; export default class PlaidItem extends TenantModel { /** * Table name. */ static get tableName() { return 'plaid_items'; } /** * Timestamps columns. */ get timestamps() { return []; } /** * Relationship mapping. */ static get relationMappings() { return {}; } }