NobGit
public imalexnord read

Slot

Calendar-first scheduling powered by Cloudflare Workers and Google Calendar.

Languages

Repository composition by tracked source files.

TypeScript
TypeScript 79% CSS 19% SQL 2% HTML 0%
Create file Wiki Documentation
Clone
https://nobgit.com/user/imalexnord/slot.git
ssh://[email protected]:2222/user/imalexnord/slot.git

Trace

migrations/0003_stripe_payments.sql

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

0003_stripe_payments.sql on main
Author Date Commit Line Code
Alex Nord 1 day ago 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
1
ALTER TABLE bookings ADD COLUMN payment_status TEXT NOT NULL DEFAULT 'not_requested';
Open commit View diff
1 ALTER TABLE bookings ADD COLUMN payment_status TEXT NOT NULL DEFAULT 'not_requested';
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
2
ALTER TABLE bookings ADD COLUMN payment_amount INTEGER;
Open commit View diff
2 ALTER TABLE bookings ADD COLUMN payment_amount INTEGER;
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
3
ALTER TABLE bookings ADD COLUMN payment_currency TEXT;
Open commit View diff
3 ALTER TABLE bookings ADD COLUMN payment_currency TEXT;
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
4
ALTER TABLE bookings ADD COLUMN stripe_checkout_session_id TEXT;
Open commit View diff
4 ALTER TABLE bookings ADD COLUMN stripe_checkout_session_id TEXT;
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
5
ALTER TABLE bookings ADD COLUMN stripe_payment_intent_id TEXT;
Open commit View diff
5 ALTER TABLE bookings ADD COLUMN stripe_payment_intent_id TEXT;
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
6
ALTER TABLE bookings ADD COLUMN paid_at TEXT;
Open commit View diff
6 ALTER TABLE bookings ADD COLUMN paid_at TEXT;
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
7
Open commit View diff
7
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
8
CREATE INDEX IF NOT EXISTS idx_bookings_payment_status ON bookings(payment_status);
Open commit View diff
8 CREATE INDEX IF NOT EXISTS idx_bookings_payment_status ON bookings(payment_status);
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
9
CREATE UNIQUE INDEX IF NOT EXISTS idx_bookings_stripe_checkout_session_id
Open commit View diff
9 CREATE UNIQUE INDEX IF NOT EXISTS idx_bookings_stripe_checkout_session_id
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
10
  ON bookings(stripe_checkout_session_id)
Open commit View diff
10 ON bookings(stripe_checkout_session_id)
same change 9abcc27

Added Stripe payments

Full commit hash
9abcc271f095921a2c76e260009e53cda98d817a
Author
Alex Nord <[email protected]>
Date
1 day ago
Selected line
11
  WHERE stripe_checkout_session_id IS NOT NULL;
Open commit View diff
11 WHERE stripe_checkout_session_id IS NOT NULL;