mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
eec356f22d
fix seeder info to newer info
22 lines
389 B
PHP
22 lines
389 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\SettingCredit;
|
|
|
|
class SettingCreditSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('setting_credits')->insert([
|
|
'rmb_credit_limit' => '4000',
|
|
'usd_credit_limit' => '5000',
|
|
'time_limit' => '6000'
|
|
]);
|
|
}
|
|
}
|