A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
Yes, it is absolutely possible. In fact, what you’re describing is the fundamental design and intended workflow of Entity Framework Migrations.
The migration files generated by Add-Migration are designed to be committed to source control (Git) as part of your codebase. When you pull that code onto another machine, those files provide the instructions necessary for EF to synchronize the local database. This is exactly how teams share schema changes and how CI/CD pipelines deploy database updates to production.
You can simply pull your changes on the laptop and run Update-Database. EF Core will check the __EFMigrationsHistory table in your local SQLite file, see which migrations haven't been applied yet, and execute them to bring the schema up to date. You can even use the HasData method in your configurations to seed initial data so that your tables are populated automatically on the new machine.
I highly recommend giving it a try; it’s one of the most powerful features for maintaining environment consistency. You can find more details in the official documentation on Migrations in Team Environments.