Skip to content
This repository was archived by the owner on Nov 22, 2025. It is now read-only.

mridulgain/blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blog

An web app for bloging

General Instruction

Make changes through your own branch.

Instruction regarding db

Please follow this db config and schema so that we face lesser problem during integration.
	1. log into your root and create an user "demo" with password "demo";
	2. create a data base named "blog"
Please initialise your local db with the mysql dump file(blog.sql) in "db_bak" folder.
	3. mysql -u demo -p blog < blog.sql;
If you make any changes to db please upload the modified mysql dump and mention it in this readme file. 

Database congiguration

db : mysql
db name : blog
username : demo
password : demo

Schema Definitions

1. users(username (pk), password, first_name, last_name, email, phone);
2. user_posts(post_id int <auto_increment (pk)>, name, email, phone, heading, sub_heading, post, publish_date <auto_generate>, publish_time <auto_generate>);
3. topics(topic_id int auto_increment, topic_name(pk));
4. tags(post_id(fk->posts),topic_id
		pk=(post_id,topic_id));

About

An web app for bloging

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors