1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-19 08:26:23 -07:00
gochan/tools/mysql_dummydata.sql
2024-08-09 20:57:28 -07:00

11 lines
No EOL
499 B
SQL

-- This should be run only after gochan has been started for the first time
-- Also this should only be used in a development environment
-- mysql -u gochan -D gochan -pgochan < /vagrant/tools/mysql_dummydata.sql
INSERT INTO gc_threads (board_id) values(1);
INSERT INTO `gc_posts` (
`thread_id`,`ip`,`name`,`tripcode`,`email`,`subject`,`message`,`message_raw`
) VALUES (
1,'192.168.56.1','Name','Tripcode','email@email.com','Subject','Message<br /><b>bold text</b>','Message
[b]bold text[/b]'
);