mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-24 16:10:37 -06:00
Added new lines.
This commit is contained in:
parent
4d6e244100
commit
426351bb54
@ -96,4 +96,4 @@ class AttachmentCollector extends BasicCollector implements CollectorInterface
|
||||
$this->explanationString .= $string;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -55,4 +55,4 @@ class BasicCollector
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -34,4 +34,4 @@ interface CollectorInterface
|
||||
*/
|
||||
public function setFiles(Collection $files);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -66,4 +66,4 @@ class UploadCollector extends BasicCollector implements CollectorInterface
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -58,4 +58,4 @@ class ConfigurationFile
|
||||
return $file;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -420,4 +420,4 @@ class Entry
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -55,4 +55,4 @@ class BasicExporter
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -80,4 +80,4 @@ class CsvExporter extends BasicExporter implements ExporterInterface
|
||||
$this->fileName = storage_path('export') . DIRECTORY_SEPARATOR . $fileName;
|
||||
$this->handler = fopen($this->fileName, 'w');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -39,4 +39,4 @@ interface ExporterInterface
|
||||
*/
|
||||
public function getFileName();
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -63,4 +63,4 @@ class JournalCollector
|
||||
->get(['transaction_journals.*']);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -157,4 +157,4 @@ class Processor
|
||||
{
|
||||
return $this->files;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -560,4 +560,4 @@ Breadcrumbs::register(
|
||||
$breadcrumbs->push($journal->description, route('transactions.show', [$journal->id]));
|
||||
|
||||
}
|
||||
);
|
||||
);
|
||||
|
@ -78,4 +78,4 @@ class ExportJobRepository implements ExportJobRepositoryInterface
|
||||
return Auth::user()->exportJobs()->where('key', $key)->first();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -36,4 +36,4 @@ interface ExportJobRepositoryInterface
|
||||
*/
|
||||
public function findByKey(string $key);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ class ChangesForV380 extends Migration
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
// new table "rule_groups"
|
||||
// new table "export_jobs"
|
||||
Schema::create(
|
||||
'export_jobs', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
@ -40,5 +40,19 @@ class ChangesForV380 extends Migration
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
// new table for transaction journal meta, "journal_meta"
|
||||
Schema::create('journal_meta', function(Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->timestamps();
|
||||
$table->integer('transaction_journal_id')->unsigned();
|
||||
$table->string('name');
|
||||
$table->text('data');
|
||||
|
||||
$table->unique(['transaction_journal_id', 'name']);
|
||||
|
||||
// link to transaction journal
|
||||
$table->foreign('transaction_journal_id')->references('id')->on('transaction_journals')->onDelete('cascade');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
0
resources/lang/fr_FR/breadcrumbs.php
Executable file → Normal file
0
resources/lang/fr_FR/breadcrumbs.php
Executable file → Normal file
0
resources/lang/fr_FR/config.php
Executable file → Normal file
0
resources/lang/fr_FR/config.php
Executable file → Normal file
0
resources/lang/fr_FR/firefly.php
Executable file → Normal file
0
resources/lang/fr_FR/firefly.php
Executable file → Normal file
0
resources/lang/fr_FR/form.php
Executable file → Normal file
0
resources/lang/fr_FR/form.php
Executable file → Normal file
0
resources/lang/fr_FR/help.php
Executable file → Normal file
0
resources/lang/fr_FR/help.php
Executable file → Normal file
0
resources/lang/fr_FR/list.php
Executable file → Normal file
0
resources/lang/fr_FR/list.php
Executable file → Normal file
0
resources/lang/fr_FR/pagination.php
Executable file → Normal file
0
resources/lang/fr_FR/pagination.php
Executable file → Normal file
0
resources/lang/fr_FR/passwords.php
Executable file → Normal file
0
resources/lang/fr_FR/passwords.php
Executable file → Normal file
0
resources/lang/fr_FR/validation.php
Executable file → Normal file
0
resources/lang/fr_FR/validation.php
Executable file → Normal file
0
resources/lang/nl_NL/breadcrumbs.php
Executable file → Normal file
0
resources/lang/nl_NL/breadcrumbs.php
Executable file → Normal file
0
resources/lang/nl_NL/config.php
Executable file → Normal file
0
resources/lang/nl_NL/config.php
Executable file → Normal file
0
resources/lang/nl_NL/firefly.php
Executable file → Normal file
0
resources/lang/nl_NL/firefly.php
Executable file → Normal file
0
resources/lang/nl_NL/form.php
Executable file → Normal file
0
resources/lang/nl_NL/form.php
Executable file → Normal file
0
resources/lang/nl_NL/help.php
Executable file → Normal file
0
resources/lang/nl_NL/help.php
Executable file → Normal file
0
resources/lang/nl_NL/list.php
Executable file → Normal file
0
resources/lang/nl_NL/list.php
Executable file → Normal file
0
resources/lang/nl_NL/pagination.php
Executable file → Normal file
0
resources/lang/nl_NL/pagination.php
Executable file → Normal file
0
resources/lang/nl_NL/passwords.php
Executable file → Normal file
0
resources/lang/nl_NL/passwords.php
Executable file → Normal file
0
resources/lang/nl_NL/validation.php
Executable file → Normal file
0
resources/lang/nl_NL/validation.php
Executable file → Normal file
0
resources/lang/pt_BR/breadcrumbs.php
Executable file → Normal file
0
resources/lang/pt_BR/breadcrumbs.php
Executable file → Normal file
0
resources/lang/pt_BR/config.php
Executable file → Normal file
0
resources/lang/pt_BR/config.php
Executable file → Normal file
0
resources/lang/pt_BR/firefly.php
Executable file → Normal file
0
resources/lang/pt_BR/firefly.php
Executable file → Normal file
0
resources/lang/pt_BR/form.php
Executable file → Normal file
0
resources/lang/pt_BR/form.php
Executable file → Normal file
0
resources/lang/pt_BR/help.php
Executable file → Normal file
0
resources/lang/pt_BR/help.php
Executable file → Normal file
0
resources/lang/pt_BR/list.php
Executable file → Normal file
0
resources/lang/pt_BR/list.php
Executable file → Normal file
0
resources/lang/pt_BR/pagination.php
Executable file → Normal file
0
resources/lang/pt_BR/pagination.php
Executable file → Normal file
0
resources/lang/pt_BR/passwords.php
Executable file → Normal file
0
resources/lang/pt_BR/passwords.php
Executable file → Normal file
0
resources/lang/pt_BR/validation.php
Executable file → Normal file
0
resources/lang/pt_BR/validation.php
Executable file → Normal file
@ -12,4 +12,4 @@ https://github.com/JC5/firefly-iii/issues/new
|
||||
|
||||
The full stacktrace is below:
|
||||
|
||||
{{ stacktrace }}
|
||||
{{ stacktrace }}
|
||||
|
@ -58,4 +58,4 @@
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user