2021-11-18 13:06:42 -08:00
|
|
|
-- This should be run only after gochan has been started for the first time
|
|
|
|
-- Also this should only be used in a development environment
|
2024-08-09 20:57:28 -07:00
|
|
|
-- mysql -u gochan -D gochan -pgochan < /vagrant/tools/mysql_dummydata.sql
|
2021-11-18 13:06:42 -08:00
|
|
|
|
|
|
|
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]'
|
|
|
|
);
|