A markdown example shows how to write a markdown file. This document integrates core syntax and extensions (GMF).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Events Seed Data SQL File | |
| -- This file creates the events table and populates it with seed data | |
| -- Current date reference: January 18, 2026 | |
| -- Drop existing table if it exists | |
| DROP TABLE IF EXISTS events CASCADE; | |
| -- Create events table | |
| CREATE TABLE events ( | |
| id SERIAL PRIMARY KEY, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Blog Seed Data SQL File | |
| -- This file creates the blog tables and populates them with seed data | |
| -- Drop existing tables if they exist (cascade to drop dependent tables) | |
| DROP TABLE IF EXISTS blog_post_tags CASCADE; | |
| DROP TABLE IF EXISTS blog_posts CASCADE; | |
| DROP TABLE IF EXISTS blog_tags CASCADE; | |
| -- Create blog_posts table | |
| CREATE TABLE blog_posts ( |