2020-09-09 07:30:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core;
|
|
|
|
|
|
2020-09-10 10:51:30 +00:00
|
|
|
use Konekt\Concord\Conventions\ConcordDefault;
|
2020-09-09 07:30:26 +00:00
|
|
|
|
2020-09-10 10:51:30 +00:00
|
|
|
class CoreConvention extends ConcordDefault
|
2020-09-09 07:30:26 +00:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
*/
|
|
|
|
|
public function migrationsFolder(): string
|
|
|
|
|
{
|
|
|
|
|
return 'Database/Migrations';
|
|
|
|
|
}
|
|
|
|
|
}
|