diff --git a/database/migrations/2021_07_07_154223_add_spell_table.php b/database/migrations/2021_07_07_154223_add_spell_table.php new file mode 100644 index 0000000..ed7db11 --- /dev/null +++ b/database/migrations/2021_07_07_154223_add_spell_table.php @@ -0,0 +1,22 @@ +unsignedBigInteger('id')->primary()->unique(); + $table->string('name')->unique(); + $table->string('slug')->unique(); + }); + } +}