I say don't. Data can change at any given time. Instead you should only commit data models in your code, schema and table definitions (create database
and create table
statements) and sample data for unit tests. This is kinda the way that Laravel does it, committing database migrations and seeds.