Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class ElasticsearchMigration extends Model |
||
16 | { |
||
17 | /** |
||
18 | * The table associated with the model. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $table = 'triadev_elasticsearch_migration'; |
||
23 | |||
24 | /** |
||
25 | * Get migration steps |
||
26 | * |
||
27 | * @return HasMany |
||
28 | */ |
||
29 | public function migrationSteps() : HasMany |
||
38 |