mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 06:02:39 +01:00
15 lines
209 B
PHP
Executable File
15 lines
209 B
PHP
Executable File
<?php
|
|
|
|
class ConstantsSeeder extends Seeder
|
|
{
|
|
|
|
public function run()
|
|
{
|
|
DB::table('gateways')->delete();
|
|
|
|
Gateway::create(array(
|
|
'name' => 'PayPal Express',
|
|
'provider' => 'PayPal_Express'
|
|
));
|
|
}
|
|
} |