core-table-constraint.php
3 years ago
form-constraint.php
3 years ago
user-constraint.php
3 years ago
form-constraint.php
16 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 | class Form_Constraint extends Core_Table_Constraint { |
| 9 | |
| 10 | public function __construct() { |
| 11 | $this->set_model( new Core_Post_Model() ); |
| 12 | $this->set_foreign_keys( array( 'form_id' ) ); |
| 13 | $this->on_delete( self::ACTION_CASCADE ); |
| 14 | } |
| 15 | |
| 16 | } |