Updated db name, document title. Removed /vendor
This commit is contained in:
parent
7e86321332
commit
987294e630
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
App/Config.php
|
App/Config.php
|
||||||
node_modules
|
/node_modules
|
||||||
|
/vendor
|
||||||
|
@ -5,7 +5,7 @@ class Config
|
|||||||
{
|
{
|
||||||
const
|
const
|
||||||
DB_HOST = 'mariadb',
|
DB_HOST = 'mariadb',
|
||||||
DB_DB = 'lepisi',
|
DB_DB = 'pengumuman',
|
||||||
DB_UNAME = 'root',
|
DB_UNAME = 'root',
|
||||||
DB_PWD = 'root',
|
DB_PWD = 'root',
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
{% extends "legacy.html" %}
|
{% extends "legacy.html" %}
|
||||||
|
|
||||||
{% block title %}Mithril{% endblock %}
|
{% block title %}Pengumuman{% endblock %}
|
||||||
|
@ -5,9 +5,9 @@ SET time_zone = '+00:00';
|
|||||||
SET foreign_key_checks = 0;
|
SET foreign_key_checks = 0;
|
||||||
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
||||||
|
|
||||||
DROP DATABASE IF EXISTS `lepisi`;
|
DROP DATABASE IF EXISTS `pengumuman`;
|
||||||
CREATE DATABASE `lepisi` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
CREATE DATABASE `pengumuman` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||||
USE `lepisi`;
|
USE `pengumuman`;
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `client_session`;
|
DROP TABLE IF EXISTS `client_session`;
|
||||||
CREATE TABLE `client_session` (
|
CREATE TABLE `client_session` (
|
Loading…
Reference in New Issue
Block a user