<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lorddashme / wordpress-db-schema-extender example snippets
ordDashMe\Wordpress\DB\SchemaExtender;
$schemaExtender = new SchemaExtender();
$schemaExtender->init(function($context) {
$context->table('users', function($table) {
$table->column('id', 'INT(11) NOT NULL AUTO_INCREMENT');
$table->column('name', 'TEXT NULL');
$table->primaryKey('id');
});
$context->table('user_options', function($table) {
$table->column('id', 'INT(11) NOT NULL AUTO_INCREMENT');
$table->column('user_id', 'INT(11) NOT NULL');
$table->column('nick_name', 'INT(11) NOT NULL');
$table->primaryKey('id');
});
$context->rawQuery('
ALTER TABLE ' . $context->tableName('users_options') . '
ADD KEY `user_id` (`user_id`);
ALTER TABLE ' . $context->tableName('users_options') . '
ADD CONSTRAINT `foreign_constraint_users_option_users`
FOREIGN KEY (`user_id`)
REFERENCES ' . $context->tableName('users') . ' (`id`)
ON DELETE CASCADE
ON UPDATE NO ACTION;'
);
$context->tableSeed('users', function($data) {
$data->name = 'John Doe';
return $data;
});
});
$schemaExtender->tableSeed('user_options', function($data) {
$data->user_id = 1;
$data->nick_name = 'Nick Name' . rand();
return $data;
})->iterate(2);
// You can attach the "migrate" function to "register_activation_hook" of wordpress.
// When the wordpress plugin set to active you can add the extender "migrate" function
// to execute all the query stored before the activation begin.
register_activation_hook(
'<wordpress>/wp-content/plugins/<your-plugin-name>/<your-plugin-name>.php',
function () use ($schemaExtender) {
$schemaExtender->migrate();
}
);
ordDashMe\Wordpress\DB\SchemaExtender;
$schemaExtender = new SchemaExtender();
$schemaExtender->init();
$schemaExtender->dropTable('users');
$schemaExtender->dropTable('user_options');
// Or you can also use the alias function that support multiple table names in a single argument.
$schemaExtender->dropTables(['users', 'user_options']);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.