2023-01-25 17:44:11 +00:00
|
|
|
<?php
|
|
|
|
|
namespace jobs;
|
2023-02-05 23:35:31 +00:00
|
|
|
class JobDatabaseTable extends \CSY2028\DatabaseTable { //Represents A table from the schema for this site
|
2023-01-25 17:44:11 +00:00
|
|
|
protected $server = 'mysql';
|
|
|
|
|
protected $username = 'student';
|
|
|
|
|
protected $password = 'student';
|
|
|
|
|
protected $schema = 'job';
|
|
|
|
|
}
|