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

21 lines
289 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
class ConstantsSeeder extends Seeder
{
public function run()
{
DB::table('gateways')->delete();
2013-11-26 22:45:10 +01:00
2013-11-26 13:45:07 +01:00
Gateway::create(array(
'name' => 'PayPal Express',
'provider' => 'PayPal_Express'
));
2013-11-26 22:45:10 +01:00
/*
ActivityType::create(array(
'name' => 'Created invoice'
));
*/
2013-11-26 13:45:07 +01:00
}
}