Files
firefly-iii/database/seeds/TransactionTypeSeeder.php

21 lines
602 B
PHP
Raw Normal View History

2015-02-06 04:41:00 +01:00
<?php
2017-03-25 13:41:17 +01:00
declare(strict_types=1);
2016-05-20 08:57:45 +02:00
2015-02-06 05:01:24 +01:00
use FireflyIII\Models\TransactionType;
2015-02-11 07:35:10 +01:00
use Illuminate\Database\Seeder;
2015-02-06 04:41:00 +01:00
/**
* Class TransactionTypeSeeder
*/
class TransactionTypeSeeder extends Seeder
{
public function run()
{
TransactionType::create(['type' => TransactionType::WITHDRAWAL]);
TransactionType::create(['type' => TransactionType::DEPOSIT]);
TransactionType::create(['type' => TransactionType::TRANSFER]);
TransactionType::create(['type' => TransactionType::OPENING_BALANCE]);
2017-11-18 15:53:27 +01:00
TransactionType::create(['type' => TransactionType::RECONCILIATION]);
2015-02-06 04:41:00 +01:00
}
2017-11-15 10:53:17 +01:00
}