Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 2x 2x 6x 3x 75x 274x 2x | const ProductVariants = require('./product-variants');
const Product = require('./product');
class ProductVariant {
constructor(props) {
Object.assign(this, props);
}
get BoCollection() {
return ProductVariants;
}
static get tableName() {
return 'product_variant';
}
static get sqlColumnsData() {
return [
'id',
{ column: 'product_id', references: Product },
'actual_product_variant_id',
'color_id',
'gender_id',
'size_id',
'barcode',
'price',
'compare_at_price',
'created_date',
'updated_date',
'grams',
'requires_shipping'
];
}
}
module.exports = ProductVariant;
|