Audience question: if a hobby project grows, can I switch from SQLite to Postgres without pain? Margheim: short answer, no lock-in. SQLite's schema and type system are a looser subset of Postgres's, so going from simple/loose to complex/strict is easier than the reverse. Active Record already abstracts the database — at test.io the team just migrated three apps from MySQL to Postgres thanks to that abstraction. Using the enhanced-sqlite3-adapter gem doesn't bind you either: `bundle remove` leaves no source-file changes behind because it only patches via initializers.