FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Database
/
Tables
Edit File: VariantOptionValues.php
<?php namespace SureCart\Database\Tables; use SureCart\Database\Table; /** * The integrations table class. */ class VariantOptionValues { /** * Holds the table instance. * * @var \SureCart\Database\Table */ protected $table; /** * Version number for the table. * Change this to update the table. * * @var integer */ protected $version = 2; /** * Table name. * * @var string */ protected $name = 'surecart_variant_option_values'; /** * Get the table dependency. * * @param \SureCart\Database\Table $table The table dependency. */ public function __construct( Table $table ) { $this->table = $table; } /** * Get the table name. * * @return string */ public function getName() { global $wpdb; return $wpdb->prefix . $this->name; } /** * Add relationships custom table * This allows for simple, efficient queries * * @return mixed */ public function install() { return $this->table->create( $this->name, ' id bigint(20) unsigned NOT NULL auto_increment, value varchar(155) NOT NULL, name varchar(155) NOT NULL, post_id bigint(20) unsigned NOT NULL, product_id varchar(155) NOT NULL, account_id varchar(155) NOT NULL, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(), updated_at TIMESTAMP NULL, PRIMARY KEY (id), KEY value (value), KEY name (name), KEY post_id (post_id), KEY product_id (product_id), KEY account_id (account_id), KEY created_at (created_at), KEY updated_at (updated_at) ', $this->version ); } /** * Uninstall tables * * @return boolean */ public function uninstall() { return $this->table->drop( $this->getName() ); } /** * Does the table exist? * * @return boolean */ public function exists() { return $this->table->exists( $this->name ); } }
Save
Back