diff --git a/web-cake/html/app/models/blog-init.sql b/web-cake/html/app/models/blog-init.sql new file mode 100644 index 0000000..7a7efdf --- /dev/null +++ b/web-cake/html/app/models/blog-init.sql @@ -0,0 +1,16 @@ +/* First, create our posts table: */ +CREATE TABLE posts ( + id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, + title VARCHAR(50), + body TEXT, + created DATETIME DEFAULT NULL, + modified DATETIME DEFAULT NULL +); + +/* Then insert some posts for testing: */ +INSERT INTO posts (title,body,created) + VALUES ('The title', 'This is the post body.', NOW()); +INSERT INTO posts (title,body,created) + VALUES ('A title once again', 'And the post body follows.', NOW()); +INSERT INTO posts (title,body,created) + VALUES ('Title strikes back', 'This is really exciting! Not.', NOW());