/News-Aggregator---PostgreSQL-Style

Introduction Reading and writing CSV files works for small applications, but if we want our News Aggregator to take over the world we're going to need something a little more heavy-duty. Let's redesign our persistence layer so that we're reading from and writing to a PostgreSQL database rather than directly to a file. Learning Objectives Define a database schema to store user-submitted articles. Read from and write information to a PostgreSQL database from a Sinatra application. Instructions There are two steps involved when converting an app from CSV files to PostgreSQL: defining the schema and modifying the application.

Primary LanguageRuby

This repository is not active