Skip to content

Instantly share code, notes, and snippets.

View Mekebrown's full-sized avatar
😎

Mekesia Brown Mekebrown

😎
View GitHub Profile
@Mekebrown
Mekebrown / events_seed.sql
Created January 18, 2026 23:40
Events Seed Data - PostgreSQL table and seed data for upcoming tech events
-- 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,
@Mekebrown
Mekebrown / blog_seed.sql
Created January 18, 2026 23:24
Blog Seed Data - PostgreSQL tables and seed data for blog posts, tags, and relationships
-- 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 (
@Mekebrown
Mekebrown / markdown.md
Created July 10, 2017 06:29
Markdown ReadMe