I'm more-so looking for a best practice. I'm working in a team on a rather large project. I'm doing the server side coding and someone else is doing the designing. We decided to do an in-house style CMS so someone else can make some changes to content, without changing the styling.
We need to add some new pages in to make more functionality to the site, but I'm looking for a best practice for doing this. Originally I thought about using the db:seed command, but that's more-so for loading initial data, rather than a new page. Now, I'm starting to think about using a migration file, but I think it's kind of bad practice to edit a migration file back and forth for changes to a CMS page.
Any thoughts for a best practice for editing static pages through a DB record between team members?