- mcamara/laravel-localization update

- download files with correct file extension
- data type of value of abstratct is now "text"
- geopackage seeder is now application/x-sqlite3
- style improvements for search
This commit is contained in:
Arno Kaimbacher 2019-09-23 17:44:42 +02:00
parent 7bf0337faf
commit 024002eded
6 changed files with 18 additions and 11 deletions

View file

@ -24,7 +24,7 @@ class CreateDatasetAbstractsTable extends Migration
'type',
['abstract' => 'Abstract', 'methods' => 'Methods', 'series_information' => 'Series_information', 'technical_info' => 'Technical_info', 'translated' => 'Translated', 'other' => 'Other']
);
$table->string('value', 255);
$table->text('value');
$table->string('language', 3);
});
}

View file

@ -12,7 +12,7 @@ class MimetypeTableSeeder extends Seeder
DB::table('mime_types')->insert([
[
'name' => 'application/geopackage+sqlite3',
'name' => 'application/x-sqlite3',
'file_extension' => 'gpkg',
'enabled' =>true,
'created_at' => Carbon::now(),