From 75e4ed82769143be8968edf9110e6e2fd5d85028 Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 18 Oct 2020 22:09:53 +0200 Subject: forms and migrations --- ...020_10_18_183257_create_special_calls_table.php | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 database/migrations/2020_10_18_183257_create_special_calls_table.php (limited to 'database/migrations/2020_10_18_183257_create_special_calls_table.php') diff --git a/database/migrations/2020_10_18_183257_create_special_calls_table.php b/database/migrations/2020_10_18_183257_create_special_calls_table.php new file mode 100644 index 0000000..07e92be --- /dev/null +++ b/database/migrations/2020_10_18_183257_create_special_calls_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('sign')->unique(); + $table->text('description'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('special_calls'); + } +} -- cgit v1.2.3