record-action-result-model.php
2 years ago
record-error-model.php
2 years ago
record-field-model.php
2 years ago
record-model.php
2 years ago
record-field-model.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Form_Record\Models; |
| 5 | |
| 6 | use JFB_Modules\Form_Record\Constraints\Record_Model_Constraint; |
| 7 | use Jet_Form_Builder\Db_Queries\Base_Db_Model; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | class Record_Field_Model extends Base_Db_Model { |
| 15 | |
| 16 | public static function table_name(): string { |
| 17 | return 'records_fields'; |
| 18 | } |
| 19 | |
| 20 | public static function schema(): array { |
| 21 | return array( |
| 22 | 'id' => 'bigint(20) NOT NULL AUTO_INCREMENT', |
| 23 | 'record_id' => 'bigint(20) NOT NULL', |
| 24 | 'field_name' => 'varchar(100) NOT NULL', |
| 25 | 'field_value' => 'longtext', |
| 26 | 'field_type' => 'varchar(40) NOT NULL', |
| 27 | 'field_attrs' => 'longtext', |
| 28 | ); |
| 29 | } |
| 30 | |
| 31 | public static function schema_keys(): array { |
| 32 | return array( |
| 33 | 'id' => 'primary key', |
| 34 | 'record_id' => 'index', |
| 35 | ); |
| 36 | } |
| 37 | |
| 38 | public function foreign_relations(): array { |
| 39 | return array( |
| 40 | new Record_Model_Constraint(), |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | } |
| 45 |