503f38ee06
* add new currency table and make debt currency agnostic * removed currencytableseeder from production run job * russian ruble added to currencies * fix up default value * fix down migration and remove seed
11 lines
134 B
PHP
11 lines
134 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Currency extends Model
|
|
{
|
|
protected $table = 'currencies';
|
|
}
|