Implement version table, update APIs when getting version info from github because the tags API was not retrieving our current git tags
This commit is contained in:
12
app/Models/Version.php
Normal file
12
app/Models/Version.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Version extends Model
|
||||
{
|
||||
const UPDATED_AT = NULL;
|
||||
|
||||
protected $fillable = ['version'];
|
||||
}
|
Reference in New Issue
Block a user