hasTable('privacy_admins')) { $table = $schema->createTable('privacy_admins'); $table->addColumn('id', 'integer', [ 'autoincrement' => true, 'notnull' => true, 'length' => 4, ]); $table->addColumn('displayname', 'string', [ 'notnull' => true, 'length' => 64, 'default' => '', ]); $table->setPrimaryKey(['id']); } return $schema; } }