Fix testing as a result of changes in 34139bc

This commit is contained in:
Deon George
2021-07-02 10:03:36 +10:00
parent 6656fc3d3d
commit 9e1723a7af
5 changed files with 19 additions and 31 deletions

View File

@@ -20,35 +20,27 @@ class SiteTableSeeder extends Seeder
$o->id = 254;
// $o->date_orig
$o->active = TRUE;
$o->site_id = 254;
$o->country_id = 61;
$o->language_id = 1;
$o->currency_id = 6;
$o->url = 'test1';
// $o->login_expire;
// $o->time_format;
// $o->date_format;
// $o->decimal_place;
// $o->module_config;
// $o->site_details;
// $o->admin_date;
//$o->admin_id;
$o->save();
// Test Sites 254 & 255
$o = new Site;
$o->id = 255;
// $o->date_orig
$o->site_id = 255;
$o->active = TRUE;
$o->country_id = 61;
$o->language_id = 1;
$o->currency_id = 6;
$o->url = 'test2';
// $o->login_expire;
// $o->time_format;
// $o->date_format;
// $o->decimal_place;
// $o->module_config;
// $o->site_details;
// $o->admin_date;
// $o->admin_id;
$o->save();
}
}