aboutsummaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-11-06 19:59:52 +0100
committerMateja <mail@matejamaric.com>2020-11-06 19:59:52 +0100
commit7907c1eecc37e5378da0e28838203c70c693ec71 (patch)
tree9857f84448852867b3cd85aece534478fb05d09e /database
parent34b559e17e7896ca5b19221187f77c063b68d8eb (diff)
downloadyota-laravel-7907c1eecc37e5378da0e28838203c70c693ec71.tar.gz
yota-laravel-7907c1eecc37e5378da0e28838203c70c693ec71.zip
Gallery work...
Diffstat (limited to 'database')
-rw-r--r--database/migrations/2020_11_06_185340_create_images_table.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/database/migrations/2020_11_06_185340_create_images_table.php b/database/migrations/2020_11_06_185340_create_images_table.php
new file mode 100644
index 0000000..5c03545
--- /dev/null
+++ b/database/migrations/2020_11_06_185340_create_images_table.php
@@ -0,0 +1,33 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class CreateImagesTable extends Migration
+{
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::create('images', function (Blueprint $table) {
+ $table->id();
+ $table->string('name');
+ $table->string('path');
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('images');
+ }
+}