Skip to content

Commit

Permalink
Volunteer Stats Database Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Lesko committed Mar 28, 2019
1 parent 5239732 commit f1ac555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Database/2019_03_15_000000_create_openpolice_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -853,12 +853,12 @@ public function up()
$table->integer('VolunStatOnlineResearch')->default('0')->nullable();
$table->integer('VolunStatCallsDept')->default('0')->nullable();
$table->integer('VolunStatCallsIA')->default('0')->nullable();
$table->integer('VolunStatTot')->default('0')->nullable();
$table->integer('VolunStatCallsTot')->default('0')->nullable();
$table->integer('VolunStatTotalEdits')->default('0')->nullable();
$table->integer('VolunStatOnlineResearchV')->default('0')->nullable();
$table->integer('VolunStatCallsDeptV')->default('0')->nullable();
$table->integer('VolunStatCallsIAV')->default('0')->nullable();
$table->integer('VolunStatTotV')->default('0')->nullable();
$table->integer('VolunStatCallsTotV')->default('0')->nullable();
$table->integer('VolunStatTotalEditsV')->default('0')->nullable();
$table->timestamps();
});
Expand Down
4 changes: 2 additions & 2 deletions src/Models/OPzVolunStatDays.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ class OPzVolunStatDays extends Model
'VolunStatOnlineResearch',
'VolunStatCallsDept',
'VolunStatCallsIA',
'VolunStatTot',
'VolunStatCallsTot',
'VolunStatTotalEdits',
'VolunStatOnlineResearchV',
'VolunStatCallsDeptV',
'VolunStatCallsIAV',
'VolunStatTotV',
'VolunStatCallsTotV',
'VolunStatTotalEditsV',
];

Expand Down

0 comments on commit f1ac555

Please sign in to comment.