core-table-constraint.php
2 years ago
form-constraint.php
2 years ago
user-constraint.php
2 years ago
form-constraint.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Db_Queries\Constraints; |
| 5 | |
| 6 | use Jet_Form_Builder\Db_Queries\Models\Core_Post_Model; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Form_Constraint extends Core_Table_Constraint { |
| 14 | |
| 15 | public function __construct() { |
| 16 | $this->set_model( new Core_Post_Model() ); |
| 17 | $this->set_foreign_keys( array( 'form_id' ) ); |
| 18 | $this->on_delete( self::ACTION_CASCADE ); |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |