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
| -- ============================================ | |
| -- Bergwerk Idle — Supabase Datenbank-Schema | |
| -- EINFACHE VERSION — kein Auth-Dependency | |
| -- ============================================ | |
| -- Extension für UUIDs | |
| CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | |
| -- 1. PLAYERS (statt auth.users — standalone) | |
| CREATE TABLE IF NOT EXISTS public.profiles ( |
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
| <!DOCTYPE html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="theme-color" content="#ffd700"> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | |
| <link rel="manifest" href="manifest.json"> | |
| <link rel="icon" href="icons/icon-192x192.png" type="image/png"> |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Naruto – Believe It!</title> | |
| <style> | |
| :root { | |
| --orange: #ff8c00; | |
| --yellow: #ffd700; |