-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathinit.sql
34 lines (29 loc) · 1.32 KB
/
init.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-- grant replication to mysql user
GRANT REPLICATION CLIENT ON *.* TO 'myuser'@'%';
GRANT REPLICATION SLAVE ON *.* TO 'myuser'@'%';
FLUSH PRIVILEGES;
-- Create a demo table for Gachi-muchi reference personas
CREATE TABLE IF NOT EXISTS gachi_muchi_personas (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100),
description TEXT,
strength_level INT,
special_move VARCHAR(100),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Insert Gachi-muchi personas data
INSERT INTO gachi_muchi_personas (name, description, strength_level, special_move) VALUES
('Billy Herrington', 'The legendary figure known for his iconic status in Gachi-muchi lore.', 100, 'Anvil Drop'),
('Van Darkholme', 'The dungeon master and meme icon, known for his intense presence.', 95, 'Whip of Submission'),
('Ricardo Milos', 'A viral dancer with unmatched energy and meme status.', 90, 'Twerk of Power'),
('Mark Wolff', 'One of the strong and bold Gachi-muchi personas.', 85, 'Wolf Howl Slam'),
('Kazuhiko', 'An energetic character with a playful spirit, popular in certain circles.', 80, 'Smiling Slam');
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100),
email VARCHAR(100)
);
INSERT INTO users (name, email) VALUES
('Alice', 'alice@example.com'),
('Bob', 'bob@example.com'),
('Charlie', 'charlie@example.com');