adding sql for creating blog data
This commit is contained in:
parent
b781c8ec54
commit
c65e0344b6
16
web-cake/html/app/models/blog-init.sql
Normal file
16
web-cake/html/app/models/blog-init.sql
Normal file
@ -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());
|
Loading…
Reference in New Issue
Block a user