activitypub-php/test/bootstrap.php

18 lines
342 B
PHP
Raw Normal View History

<?php
2018-11-24 03:25:56 +00:00
namespace ActivityPub\Test;
use ActivityPub\ActivityPub;
$dbPath = dirname( __FILE__ ) . '/../db.sqlite';
if ( file_exists( $dbPath ) ) {
unlink( $dbPath );
}
$activityPub = new ActivityPub( array(
'dbOptions' => array(
'driver' => 'pdo_sqlite',
'path' => $dbPath,
),
) );
$activityPub->updateSchema();
?>