payer-model-constraint.php
3 years ago
payer-shipping-model-constraint.php
3 years ago
payment-model-constraint.php
3 years ago
payment-model-constraint.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Gateways\Db_Models\Constraints; |
| 5 | |
| 6 | |
| 7 | use Jet_Form_Builder\Db_Queries\Base_Db_Constraint; |
| 8 | use Jet_Form_Builder\Gateways\Db_Models\Payment_Model; |
| 9 | |
| 10 | class Payment_Model_Constraint extends Base_Db_Constraint { |
| 11 | |
| 12 | public function __construct() { |
| 13 | $this->set_model( new Payment_Model() ); |
| 14 | $this->set_foreign_keys( array( 'payment_id' ) ); |
| 15 | $this->on_delete( self::ACTION_CASCADE ); |
| 16 | } |
| 17 | |
| 18 | } |