From 9cf17865d001f2e84d76928c000fa0e1f3209661 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 2 Nov 2023 11:24:48 +0100 Subject: [PATCH] Add migration --- ...3_05_11_000001_create_bar_childs_table.php | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/etc/migrations/2023_05_11_000001_create_bar_childs_table.php diff --git a/tests/etc/migrations/2023_05_11_000001_create_bar_childs_table.php b/tests/etc/migrations/2023_05_11_000001_create_bar_childs_table.php new file mode 100644 index 0000000..94557d3 --- /dev/null +++ b/tests/etc/migrations/2023_05_11_000001_create_bar_childs_table.php @@ -0,0 +1,31 @@ +increments('id'); + + $table->string('bar')->nullable(); + + $table->json('data')->nullable(); + }); + } + + public function down() + { + Schema::dropIfExists('bar_childs'); + } +}