Files
mach_examples/07_roundest_pokemon_htmx/create_pokemons_table.sql

8 lines
192 B
MySQL
Raw Normal View History

2025-07-24 12:46:01 -05:00
CREATE TABLE IF NOT EXISTS pokemons (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
sprite TEXT NOT NULL,
wins INTEGER NOT NULL DEFAULT 0,
loses INTEGER NOT NULL DEFAULT 0
);