createTable('login_address'); $table->addColumn('id', 'integer', [ 'autoincrement' => true, 'notnull' => true, 'length' => 4, ]); $table->addColumn('uid', 'string', [ 'notnull' => true, 'length' => 64, ]); $table->addColumn('ip', 'string', [ 'notnull' => true, 'length' => 64, ]); $table->addColumn('created_at', 'integer', [ 'notnull' => true, 'length' => 4, ]); $table->setPrimaryKey(['id']); return $schema; } }