migration column in file_manager_files renamed from meta_data to metadata

context menu feractoring
Editor.php typo changes
FileInfoPanel.vue small changes when to show metadata info
Added new exif information and reordering existing in ImageMetaData.vue
Added new translation strings to i18n files
This commit is contained in:
Peter Papp
2020-09-20 11:17:34 +02:00
parent d5f3599b9e
commit f30dd38b96
11 changed files with 839 additions and 821 deletions

View File

@@ -14,7 +14,7 @@ class AddExifDataToFileManagerFilesTable extends Migration
public function up()
{
Schema::table('file_manager_files', function (Blueprint $table) {
$table->longText('meta_data')->after('type')->nullable();
$table->longText('metadata')->after('type')->nullable();
});
}