1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/database/seeds/ConstantsSeeder.php
2013-11-26 23:45:10 +02:00

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'
));
*/
}
}