CL7CK is a small and simple time management application project
CL7CK was developed for study purposes in order to study CodeIgniter and Bootstrap.
To run CL7CK, you need to place the CL7CK files in your projects folder on your server/local server and run the sql scripts in your mysql database management system.
To configure the database, you can run the scripts below or run the database.sql script
CREATE DATABASE `Cl7ck`;
USE `Cl7ck`;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`email` varchar(80) NOT NULL,
`password` varchar(255) NOT NULL,
`signup_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
CREATE TABLE `goals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`creation_date` datetime NOT NULL,
`deadline_date` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
CREATE TABLE `tasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`status` varchar(50) NOT NULL,
`date` date NOT NULL,
`creation_date` date NOT NULL,
`user_id` int(11) NOT NULL,
`goal_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
- Codeigniter - The web framework used
- Bootstrap - CSS framework