#16 update scaffolding and remove accidentally committed settings file

This commit is contained in:
Nabeel Shahzad
2017-06-20 15:17:40 -05:00
parent ee8cb7e9e0
commit 3f83e1bf3d
7 changed files with 7 additions and 36 deletions

View File

@@ -26,9 +26,10 @@ class CreateSettingsTable extends Migration
$table->increments('id');
$table->string($this->keyColumn)->index();
$table->text($this->valueColumn);
$table->timestamps();
});
Setting::set('timezone', '0');
Setting::set('timezone', 'UTC');
Setting::set('currency', 'dollar');
Setting::save();
}