mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
22 lines
388 B
PHP
22 lines
388 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' => '600'
|
|
]);
|
|
}
|
|
}
|