Skip to content

Instantly share code, notes, and snippets.

PostgreSQL Data Types Cheatsheet

Here's a list with some of the most common data types in PostgreSQL.

Boolean

  • BOOLEAN - a Boolean data type can hold one of three possible values: true, false, or null.

Character Types:

PostgreSQL Example DB

Users Table

CREATE TABLE users (
    user_id SERIAL PRIMARY KEY,

Practice: PostgreSQL setup & first steps

Iteration 1 - Setup:

Follow the instructions in the unit "SQL | Introduction" to install PostgreSQL in your computer (you'll find instructions for each operating system: windows, mac, linux).


Important

Remember the credentials (username and password). \

@luisjunco
luisjunco / lab-react-components.md
Last active March 9, 2026 15:35
LAB React Components

LAB React Components

The main goal of this LAB is to practice creating and rendering React components.


Iteration 1: initial setup

For the initial setup, follow these steps:

@luisjunco
luisjunco / ts-react-components-and-props.md
Created June 6, 2024 14:45
Exercise - TypeScript + React: components and props

JS OOP Bakery exercise

In this exercise, you'll be creating a Bakery class using JavaScript. This class will represent a bakery and have some properties and methods to track the bakery's location, the number of cakes in stock, and the ability to bake cakes.

image


@luisjunco
luisjunco / project3-setup.md
Last active March 5, 2025 14:51
Ironhack - Project 3 Setup

📁 | Create a parent directory

To keep things organized, create a parent directory:

  • Navigate to the directory where keep your code (ex. navigate to your module3 directory).
  • mkdir our-cool-project

NOTE: replace "our-cool-project" with the name you choose for your project 😉

@luisjunco
luisjunco / readme-project-3.md
Last active January 22, 2026 08:22
Requirements README project 3

README Project 3

Create 2 Readme files (one for the Frontend + one for the Backend). In each of them, add the sections below:

  • Description
    • Brief description of the project
    • IMPORTANT:
  • Explain very clear if the current repo is the Frontend (React) or the Backend (Express API).
@luisjunco
luisjunco / readme-project-2.md
Last active March 27, 2026 08:07
Requirements README project 2

README Project 2

  • Description

    • Brief description of the project
  • Instructions to run this app in my computer. Probably something like this:

    • git clone
    • how to install dependencies (npm install)
  • in case you're using environment variables: explain that I'd need to create a .env file and add environment variables (remember to detail all the variables that I may need to create, if I need to create an account to get some credentials etc.)