forge->addField([ 'id' => [ 'type' => 'INT', 'constraint' => 11, 'unsigned' => true, 'auto_increment' => true, ], 'email' => [ 'type' => 'VARCHAR', 'constraint' => 254, ], 'username' => [ 'type' => 'VARCHAR', 'constraint' => 150, 'null' => true, ], 'password' => [ 'type' => 'VARCHAR', 'constraint' => 255, ], 'banned' => [ 'type' => 'TINYINT', 'constraint' => 1, 'null' => true, 'default' => 0, ], 'created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP', 'updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP', 'last_activity' => [ 'type' => 'DATETIME', 'default' => null, ], 'last_ip_address' => [ 'type' => 'VARCHAR', 'constraint' => 39, 'default' => '', ], 'last_login' => [ 'type' => 'DATETIME', 'default' => null, ], 'deleted' => [ 'type' => 'TINYINT', 'constraint' => 1, 'default' => 0, ], ]); $this->forge->addKey('id', true); $this->forge->createTable($config->dbTableUsers, true); } //-------------------------------------------------------------------- /** * Drops Table * * @return void */ public function down() { $config = new AauthConfig(); $this->forge->dropTable($config->dbTableUsers, true); } }