aboutsummaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-11-07 00:10:15 +0100
committerMateja <mail@matejamaric.com>2020-11-07 00:10:15 +0100
commite4fec1b5386c19a7c0bfb28b850862159c8710dd (patch)
tree21b6d41bda84fc85aaab996bdc2bf1bdb76d1cca /database
parent7907c1eecc37e5378da0e28838203c70c693ec71 (diff)
downloadyota-laravel-e4fec1b5386c19a7c0bfb28b850862159c8710dd.tar.gz
yota-laravel-e4fec1b5386c19a7c0bfb28b850862159c8710dd.zip
Work on gallery...
Diffstat (limited to 'database')
-rw-r--r--database/migrations/2020_11_06_185340_create_images_table.php2
1 files changed, 1 insertions, 1 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
index 5c03545..98b070d 100644
--- a/database/migrations/2020_11_06_185340_create_images_table.php
+++ b/database/migrations/2020_11_06_185340_create_images_table.php
@@ -16,7 +16,7 @@ class CreateImagesTable extends Migration
Schema::create('images', function (Blueprint $table) {
$table->id();
$table->string('name');
- $table->string('path');
+ $table->string('path', 255);
$table->timestamps();
});
}