Updated db name, document title. Removed /vendor

This commit is contained in:
Gregorio Chiko Putra 2018-06-07 09:29:23 +07:00
parent 7e86321332
commit 987294e630
4 changed files with 7 additions and 6 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
App/Config.php
node_modules
/node_modules
/vendor

View File

@ -5,7 +5,7 @@ class Config
{
const
DB_HOST = 'mariadb',
DB_DB = 'lepisi',
DB_DB = 'pengumuman',
DB_UNAME = 'root',
DB_PWD = 'root',

View File

@ -1,3 +1,3 @@
{% extends "legacy.html" %}
{% block title %}Mithril{% endblock %}
{% block title %}Pengumuman{% endblock %}

View File

@ -5,9 +5,9 @@ SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP DATABASE IF EXISTS `lepisi`;
CREATE DATABASE `lepisi` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `lepisi`;
DROP DATABASE IF EXISTS `pengumuman`;
CREATE DATABASE `pengumuman` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `pengumuman`;
DROP TABLE IF EXISTS `client_session`;
CREATE TABLE `client_session` (