mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
21 lines
289 B
PHP
Executable File
21 lines
289 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'
|
|
));
|
|
|
|
/*
|
|
ActivityType::create(array(
|
|
'name' => 'Created invoice'
|
|
));
|
|
*/
|
|
}
|
|
} |