PluginProbe
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more / 2.0.1
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more v2.0.1
2.0.2 trunk 0.2 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 2.0.0 2.0.1
texty / includes / Migrations / TextyMigration.php

TextyMigration.php in Texty – SMS Notification for WordPress, WooCommerce, Dokan and more 2.0.1, at includes/Migrations/TextyMigration.php

31 lines 705 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Base class for all Texty DB migrations.
4 *
5 * @package Texty\Migrations
6 * @since 2.0.0
7 */
8
9 namespace Texty\Migrations;
10
11 use WeDevs\WPKit\Migration\BaseMigration;
12
13 defined( 'ABSPATH' ) || exit;
14
15 /**
16 * Base class for all Texty DB migrations.
17 *
18 * Sets the option key wp-kit reads/writes to track schema version. Schema
19 * introspection helpers live on `Texty\Migrations\Schema` so they don't get
20 * picked up by `BaseMigration::run()`'s public-static auto-discovery.
21 */
22 abstract class TextyMigration extends BaseMigration {
23
24 /**
25 * The option key used to store the DB version.
26 *
27 * @var string
28 */
29 protected static string $db_version_key = 'texty_db_version';
30 }
31