芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/cms.mgaplay.com.br/vendor/robmorgan/phinx/src/Phinx/Migration/AbstractMigration.php
*/ abstract class AbstractMigration implements MigrationInterface { /** * @var float */ protected $version; /** * @var \Phinx\Db\Adapter\AdapterInterface */ protected $adapter; /** * @var \Symfony\Component\Console\Output\OutputInterface */ protected $output; /** * @var \Symfony\Component\Console\Input\InputInterface */ protected $input; /** * Whether this migration is being applied or reverted * * @var bool */ protected $isMigratingUp = true; /** * Class Constructor. * * @param int $version Migration Version * @param \Symfony\Component\Console\Input\InputInterface|null $input * @param \Symfony\Component\Console\Output\OutputInterface|null $output */ final public function __construct($version, InputInterface $input = null, OutputInterface $output = null) { $this->version = $version; if (!is_null($input)) { $this->setInput($input); } if (!is_null($output)) { $this->setOutput($output); } $this->init(); } /** * Initialize method. * * @return void */ protected function init() { } /** * {@inheritdoc} */ public function up() { } /** * {@inheritdoc} */ public function down() { } /** * {@inheritdoc} */ public function setAdapter(AdapterInterface $adapter) { $this->adapter = $adapter; return $this; } /** * {@inheritdoc} */ public function getAdapter() { return $this->adapter; } /** * {@inheritdoc} */ public function setInput(InputInterface $input) { $this->input = $input; return $this; } /** * {@inheritdoc} */ public function getInput() { return $this->input; } /** * {@inheritdoc} */ public function setOutput(OutputInterface $output) { $this->output = $output; return $this; } /** * {@inheritdoc} */ public function getOutput() { return $this->output; } /** * {@inheritdoc} */ public function getName() { return get_class($this); } /** * {@inheritdoc} */ public function setVersion($version) { $this->version = $version; return $this; } /** * {@inheritdoc} */ public function getVersion() { return $this->version; } /** * {@inheritdoc} */ public function setMigratingUp($isMigratingUp) { $this->isMigratingUp = $isMigratingUp; return $this; } /** * {@inheritdoc} */ public function isMigratingUp() { return $this->isMigratingUp; } /** * {@inheritdoc} */ public function execute($sql) { return $this->getAdapter()->execute($sql); } /** * {@inheritdoc} */ public function query($sql) { return $this->getAdapter()->query($sql); } /** * {@inheritdoc} */ public function fetchRow($sql) { return $this->getAdapter()->fetchRow($sql); } /** * {@inheritdoc} */ public function fetchAll($sql) { return $this->getAdapter()->fetchAll($sql); } /** * {@inheritdoc} */ public function insert($table, $data) { // convert to table object if (is_string($table)) { $table = new Table($table, [], $this->getAdapter()); } $table->insert($data)->save(); } /** * {@inheritdoc} */ public function createDatabase($name, $options) { $this->getAdapter()->createDatabase($name, $options); } /** * {@inheritdoc} */ public function dropDatabase($name) { $this->getAdapter()->dropDatabase($name); } /** * {@inheritdoc} */ public function hasTable($tableName) { return $this->getAdapter()->hasTable($tableName); } /** * {@inheritdoc} */ public function table($tableName, $options = []) { return new Table($tableName, $options, $this->getAdapter()); } /** * A short-hand method to drop the given database table. * * @param string $tableName Table Name * @return void */ public function dropTable($tableName) { $this->table($tableName)->drop(); } }