parent
8586994f40
commit
d5d20d2658
File diff suppressed because it is too large
Load Diff
|
|
@ -15,8 +15,8 @@ return new class extends Migration
|
|||
{
|
||||
Schema::create('item_proto', function (Blueprint $table) {
|
||||
$table->unsignedInteger('vnum')->primary();
|
||||
$table->varchar('name', length: 255)->default('Noname');
|
||||
$table->varchar('locale_name', length: 255)->default('Noname');
|
||||
$table->string('name', length: 255)->default('Noname');
|
||||
$table->string('locale_name', length: 255)->default('Noname');
|
||||
$table->tinyInteger('type')->default(0);
|
||||
$table->tinyInteger('subtype')->default(0);
|
||||
$table->tinyInteger('weight')->nullable()->default(0);
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@ return new class extends Migration
|
|||
{
|
||||
Schema::create('mob_proto', function (Blueprint $table) {
|
||||
$table->integer('vnum')->primary();
|
||||
$table->varchar('name', length: 255)->default('Noname');
|
||||
$table->varchar('locale_name', length: 255)->default('Noname');
|
||||
$table->string('name', length: 255)->default('Noname');
|
||||
$table->string('locale_name', length: 255)->default('Noname');
|
||||
$table->tinyInteger('rank')->default(0);
|
||||
$table->tinyInteger('type')->default(0);
|
||||
$table->boolean('battle_type')->default(false);
|
||||
|
|
|
|||
Loading…
Reference in New Issue