1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/models/Country.php
Hillel Coren 75b1350808 bug fixes
2014-01-08 20:09:47 +00:00

9 lines
143 B
PHP
Executable File

<?php
class Country extends Eloquent
{
public $timestamps = false;
protected $softDelete = false;
protected $visible = ['id', 'name'];
}