mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 22:52:32 +01:00
c901232f16
migrations swap sqlite file with memory set and update alternative titles simplify alternative titles change request limit handling move limitRemaining to method
13 lines
206 B
PHP
13 lines
206 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AlternativeTitle extends Model {
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['title', 'tmdb_id', 'country'];
|
|
}
|