diff options
author | Mateja <mail@matejamaric.com> | 2020-11-07 00:10:15 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-07 00:10:15 +0100 |
commit | e4fec1b5386c19a7c0bfb28b850862159c8710dd (patch) | |
tree | 21b6d41bda84fc85aaab996bdc2bf1bdb76d1cca /database/migrations | |
parent | 7907c1eecc37e5378da0e28838203c70c693ec71 (diff) | |
download | yota-laravel-e4fec1b5386c19a7c0bfb28b850862159c8710dd.tar.gz yota-laravel-e4fec1b5386c19a7c0bfb28b850862159c8710dd.zip |
Work on gallery...
Diffstat (limited to 'database/migrations')
-rw-r--r-- | database/migrations/2020_11_06_185340_create_images_table.php | 2 |
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(); }); } |