7 use Phinx\Migration\AbstractMigration;
13 public function up() {
18 $lnappTableName =
"lnappuser";
19 if ($this->hasTable($lnappTableName)) {
20 $lnappTable = $this->table($lnappTableName);
21 $lnappTable->changeColumn(
'pwd',
'string', [
'null' =>
true,
'limit' => 255])->save();
26 public function down() {