initial code commit
This commit is contained in:
14
setup.php
Normal file
14
setup.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
use Hpz937\BillReminder\Database\DatabaseSetup;
|
||||
use Hpz937\BillReminder\Database\SQLite3Database;
|
||||
|
||||
// Assuming you have a SQLite database file path
|
||||
$databaseFile = 'path/to/your/database/file.sqlite';
|
||||
|
||||
$db = new SQLite3Database($databaseFile);
|
||||
$db->connect();
|
||||
|
||||
$databaseSetup = new DatabaseSetup($db);
|
||||
$databaseSetup->setup();
|
||||
|
||||
// Continue with the rest of your application setup
|
||||
Reference in New Issue
Block a user