- 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:
parent
7bf0337faf
commit
024002eded
6 changed files with 18 additions and 11 deletions
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue