| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentForm\App\Databases; |
| 4 |
|
| 5 |
use FluentForm\App\Databases\Migrations\FormAnalytics; |
| 6 |
use FluentForm\App\Databases\Migrations\Forms; |
| 7 |
use FluentForm\App\Databases\Migrations\FormMeta; |
| 8 |
use FluentForm\App\Databases\Migrations\FormSubmissions; |
| 9 |
use FluentForm\App\Databases\Migrations\FormTransactions; |
| 10 |
use FluentForm\App\Databases\Migrations\FormSubmissionMeta; |
| 11 |
use FluentForm\App\Modules\Form\Form; |
| 12 |
|
| 13 |
class DatabaseMigrator |
| 14 |
{ |
| 15 |
public static function run() |
| 16 |
{ |
| 17 |
Forms::migrate(); |
| 18 |
FormMeta::migrate(); |
| 19 |
FormSubmissions::migrate(); |
| 20 |
FormSubmissionMeta::migrate(); |
| 21 |
FormTransactions::migrate(); |
| 22 |
FormAnalytics::migrate(); |
| 23 |
} |
| 24 |
} |
| 25 |
|