Как я могу сделать миграцию на codeigniter? - PullRequest
0 голосов
/ 27 июня 2019

Я использую коды миграции, которые работают в CodeIgniter 2, но они не будут работать в CodeIgniter 3

Я прочитал большинство вопросов, похожих на мою проблему, но не смог найти ответ.

........

class Migration_Create_users extends CI_Migration
{
   public function up()
   {
       $this->dbforge->add_field([
           'id'       => [
               'type'           => 'INT',
               'constraint'     => 11,
               'unsigned'       => true,
               'auto_increment' => true,
           ],
           'email'    => [
               'type'       => 'VARCHAR',
               'constraint' => '100',
           ],
           'password' => [
               'type'       => 'VARCHAR',
               'constraint' => '128',
           ],
           'name'     => [
               'type'       => 'VARCHAR',
               'constraint' => '100',
           ],
       ]);
       $this->dbforge->add_key('id', true);
       $this->dbforge->create_table('users');
   }
   public function down()
   {
       $this->dbforge->drop_table('users');
   }
}
class Migration extends Admin_Controller
{
    public function __construct()
    {
        parent::__construct();
    }
    public function index()
    {
        $this->load->library('migration');
        if (!$this->migration->current()) {
            show_error($this->migration->error_string());
        } else {
            echo 'Migration worked!';
        }
    }
}

// config конфигурации

defined('BASEPATH') or exit('No direct script access allowed');
$config['migration_enabled']     = true;
$config['migration_type']        = 'sequential';
$config['migration_table']       = 'migrations';
$config['migration_auto_latest'] = false;
$config['migration_version']     = 001;
$config['migration_path']        = APPPATH . 'migrations/';

Я ожидаю запустить код, затем получаю таблицусоздано в базе данных

1 Ответ

0 голосов
/ 27 июня 2019

Пожалуйста, сделайте с функцией ниже

class Migrate extends CI_Controller{

    public function index($version){
        $this->load->library("migration");

      if(!$this->migration->version($version)){
          show_error($this->migration->error_string());
      }   
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...