mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Added new lines.
This commit is contained in:
parent
4d6e244100
commit
426351bb54
@ -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
Loading…
Reference in New Issue
Block a user