Rails

Subscribe to Rails RSS feed

Content versioning in Rails with database views

For Townstage, I wanted to allow people to create or update events without having an account. I didn't want to immediately publish that data, so I needed a way to record changes and review them before they go live. I chose to implement a versioning system using Postgres views. There…