Add server and name column to lodestone cache
This commit is contained in:
parent
915b591c48
commit
e8ad668ff2
@ -10,6 +10,8 @@ class LodestoneCache extends Model
|
|||||||
|
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'type',
|
'type',
|
||||||
|
'server',
|
||||||
|
'name',
|
||||||
'lodestoneId',
|
'lodestoneId',
|
||||||
'content'
|
'content'
|
||||||
];
|
];
|
||||||
|
|||||||
@ -16,6 +16,8 @@ class CreateLodestoneCachesTable extends Migration
|
|||||||
Schema::create('lodestone_caches', function (Blueprint $table) {
|
Schema::create('lodestone_caches', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->integer('type');
|
$table->integer('type');
|
||||||
|
$table->string('server', 64);
|
||||||
|
$table->string('name', 255);
|
||||||
$table->bigInteger('lodestoneId');
|
$table->bigInteger('lodestoneId');
|
||||||
$table->text('content');
|
$table->text('content');
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user