1
0
mirror of synced 2024-12-13 22:56:04 +03:00

Initial entry.

This commit is contained in:
Jonathan.Wage 2007-09-06 17:44:29 +00:00
parent af936d4742
commit 0c05d5429e

5
website/data.sql Normal file
View File

@ -0,0 +1,5 @@
INSERT INTO `blog_post` (`id`, `created_at`, `updated_at`, `name`, `slug`, `body`) VALUES
(1, '2007-09-06 11:37:00', '2007-09-06 11:41:06', 'Test Blog Post', 'test-blog-post', 'This is a test blog post!!');
INSERT INTO `sf_guard_user` (`id`, `created_at`, `updated_at`, `username`, `algorithm`, `salt`, `password`, `last_login`, `is_active`, `is_super_admin`) VALUES
(1, '2007-09-06 11:25:14', '2007-09-06 11:25:36', 'admin', 'sha1', '9dc8c66967e1bfb0e25884958a209796', '9861d585ef106d4eef607a86ad451696a926b5d3', '2007-09-06 11:25:36', 1, 1);