| 123456789101112131415161718192021222324252627 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- class NF_Database_Migrations_Objects extends NF_Abstracts_Migration
- {
- public function __construct()
- {
- parent::__construct(
- 'nf3_objects',
- 'nf_migration_create_table_objects'
- );
- }
- public function run()
- {
- $query = "CREATE TABLE IF NOT EXISTS {$this->table_name()} (
- `id` int NOT NULL AUTO_INCREMENT,
- `type` longtext,
- `title` longtext,
- `created_at` TIMESTAMP,
- `updated_at` DATETIME,
- UNIQUE KEY (`id`)
- ) {$this->charset_collate()};";
- dbDelta( $query );
- }
- }
|