no longer need to manually initialize db
This commit is contained in:
parent
bb4112e145
commit
cacbfa66fb
22
README.md
22
README.md
@ -67,28 +67,6 @@ services:
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Database initialization
|
|
||||||
|
|
||||||
The following SQL will initialize the database for this application. No automigrate / initialization is done upon first running the application, so this must be ran by an administrator.
|
|
||||||
|
|
||||||
```sql
|
|
||||||
SET NAMES utf8;
|
|
||||||
SET time_zone = '+00:00';
|
|
||||||
SET foreign_key_checks = 0;
|
|
||||||
|
|
||||||
CREATE DATABASE `counter` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
||||||
USE `counter`;
|
|
||||||
|
|
||||||
CREATE TABLE `visit` (
|
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
||||||
`ip_address` varchar(15) NOT NULL,
|
|
||||||
`visits` int(11) NOT NULL,
|
|
||||||
`last_visited` datetime NOT NULL,
|
|
||||||
PRIMARY KEY (`id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
### Example front end usage
|
### Example front end usage
|
||||||
|
|
||||||
You can pretty much implement this in your front end however you want, you just need to make a GET request to whatever endpoint the counter container is running at. This is how I use it though...
|
You can pretty much implement this in your front end however you want, you just need to make a GET request to whatever endpoint the counter container is running at. This is how I use it though...
|
||||||
|
Loading…
Reference in New Issue
Block a user