diff --git a/database/migrations/2021_07_21_173416_add_character_id_to_users_table.php b/database/migrations/2021_07_21_173416_add_character_id_to_users_table.php new file mode 100644 index 0000000..a6670b7 --- /dev/null +++ b/database/migrations/2021_07_21_173416_add_character_id_to_users_table.php @@ -0,0 +1,23 @@ +foreignId('character_id') + ->after('discord_id') + ->nullable() + ->constrained(); + }); + } +}