File manager - Edit - /home/proidvn/me.proid.vn/wp-content/plugins/jetformbuilder/modules/gateways/db-models/payment-model.php
Back
<?php namespace JFB_Modules\Gateways\Db_Models; use Jet_Form_Builder\Db_Queries\Base_Db_Model; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } class Payment_Model extends Base_Db_Model { /** * @inheritDoc */ public static function table_name(): string { return 'payments'; } /** * @inheritDoc */ public static function schema(): array { return array( 'id' => 'bigint(20) NOT NULL AUTO_INCREMENT', 'transaction_id' => 'varchar(255)', 'initial_transaction_id' => 'varchar(255)', 'form_id' => 'bigint(20) UNSIGNED NOT NULL', 'user_id' => 'bigint(20)', 'gateway_id' => 'varchar(100)', 'scenario' => 'varchar(100)', 'amount_value' => 'DECIMAL(10,2)', 'amount_code' => 'varchar(20)', 'type' => 'varchar(100)', 'status' => 'varchar(100)', 'created_at' => 'TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP', 'updated_at' => 'TIMESTAMP NOT NULL', ); } /** * @inheritDoc */ public static function schema_keys(): array { return array( 'id' => 'primary key', 'transaction_id' => 'index', 'form_id' => 'index', 'user_id' => 'index', ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.13 |
proxy
|
phpinfo
|
Settings