@@ -52,6 +52,7 @@ class ServiceProvider extends AddonServiceProvider
5252 \Statamic \Eloquent \Updates \ChangeDefaultBlueprint::class,
5353 \Statamic \Eloquent \Updates \DropForeignKeysOnEntriesAndForms::class,
5454 \Statamic \Eloquent \Updates \SplitGlobalsFromVariables::class,
55+ \Statamic \Eloquent \Updates \AddIdToAttributesInRevisionsTable::class,
5556 ];
5657
5758 protected $ listen = [
@@ -75,20 +76,20 @@ public function boot()
7576 $ this ->publishes ([$ config => config_path ('statamic/eloquent-driver.php ' )], 'statamic-eloquent-config ' );
7677
7778 $ this ->publishes ([
78- __DIR__ .'/../database/migrations/create_taxonomies_table.php.stub ' => $ this ->migrationsPath ('create_taxonomies_table.php ' ),
79- __DIR__ .'/../database/migrations/create_terms_table.php.stub ' => $ this ->migrationsPath ('create_terms_table.php ' ),
80- __DIR__ .'/../database/migrations/create_globals_table.php.stub ' => $ this ->migrationsPath ('create_globals_table.php ' ),
79+ __DIR__ .'/../database/migrations/create_taxonomies_table.php.stub ' => $ this ->migrationsPath ('create_taxonomies_table.php ' ),
80+ __DIR__ .'/../database/migrations/create_terms_table.php.stub ' => $ this ->migrationsPath ('create_terms_table.php ' ),
81+ __DIR__ .'/../database/migrations/create_globals_table.php.stub ' => $ this ->migrationsPath ('create_globals_table.php ' ),
8182 __DIR__ .'/../database/migrations/create_global_variables_table.php.stub ' => $ this ->migrationsPath ('create_global_variables_table.php ' ),
82- __DIR__ .'/../database/migrations/create_navigations_table.php.stub ' => $ this ->migrationsPath ('create_navigations_table.php ' ),
83+ __DIR__ .'/../database/migrations/create_navigations_table.php.stub ' => $ this ->migrationsPath ('create_navigations_table.php ' ),
8384 __DIR__ .'/../database/migrations/create_navigation_trees_table.php.stub ' => $ this ->migrationsPath ('create_navigation_trees_table.php ' ),
84- __DIR__ .'/../database/migrations/create_collections_table.php.stub ' => $ this ->migrationsPath ('create_collections_table.php ' ),
85- __DIR__ .'/../database/migrations/create_blueprints_table.php.stub ' => $ this ->migrationsPath ('create_blueprints_table.php ' ),
86- __DIR__ .'/../database/migrations/create_fieldsets_table.php.stub ' => $ this ->migrationsPath ('create_fieldsets_table.php ' ),
87- __DIR__ .'/../database/migrations/create_forms_table.php.stub ' => $ this ->migrationsPath ('create_forms_table.php ' ),
85+ __DIR__ .'/../database/migrations/create_collections_table.php.stub ' => $ this ->migrationsPath ('create_collections_table.php ' ),
86+ __DIR__ .'/../database/migrations/create_blueprints_table.php.stub ' => $ this ->migrationsPath ('create_blueprints_table.php ' ),
87+ __DIR__ .'/../database/migrations/create_fieldsets_table.php.stub ' => $ this ->migrationsPath ('create_fieldsets_table.php ' ),
88+ __DIR__ .'/../database/migrations/create_forms_table.php.stub ' => $ this ->migrationsPath ('create_forms_table.php ' ),
8889 __DIR__ .'/../database/migrations/create_form_submissions_table.php.stub ' => $ this ->migrationsPath ('create_form_submissions_table.php ' ),
8990 __DIR__ .'/../database/migrations/create_asset_containers_table.php.stub ' => $ this ->migrationsPath ('create_asset_containers_table.php ' ),
90- __DIR__ .'/../database/migrations/create_asset_table.php.stub ' => $ this ->migrationsPath ('create_asset_table.php ' ),
91- __DIR__ .'/../database/migrations/create_revisions_table.php.stub ' => $ this ->migrationsPath ('create_revisions_table.php ' ),
91+ __DIR__ .'/../database/migrations/create_asset_table.php.stub ' => $ this ->migrationsPath ('create_asset_table.php ' ),
92+ __DIR__ .'/../database/migrations/create_revisions_table.php.stub ' => $ this ->migrationsPath ('create_revisions_table.php ' ),
9293 ], 'migrations ' );
9394
9495 $ this ->publishes ([
0 commit comments