mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class CurrencyRatesTableDevelopmentSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
\DB::table('currency_rates')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'currency_id' => 2,
|
|
'selling' => '1.58000',
|
|
'payment_method_type' => 1,
|
|
'service_id' => 1,
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:52:57',
|
|
'updated_at' => '2021-03-09 09:56:24',
|
|
),
|
|
1 =>
|
|
array (
|
|
'id' => 2,
|
|
'currency_id' => 2,
|
|
'selling' => '1.57000',
|
|
'payment_method_type' => 2,
|
|
'service_id' => 1,
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:52:57',
|
|
'updated_at' => '2021-03-09 09:56:24',
|
|
),
|
|
2 =>
|
|
array (
|
|
'id' => 3,
|
|
'currency_id' => 2,
|
|
'selling' => '1.54000',
|
|
'payment_method_type' => 3,
|
|
'service_id' => 1,
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:52:57',
|
|
'updated_at' => '2021-03-09 07:52:57',
|
|
)
|
|
));
|
|
|
|
|
|
}
|
|
} |