Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

Commit a936008

Browse files
melangervyskocilpavel
authored andcommitted
Specify engine and default charset in tables.sql
1 parent e56b937 commit a936008

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
44
## [Unreleased]
55
#### Changed
66
- Using of short array syntax (from array() to [])
7+
- Specify engine and default charset in tables.sql
78

89
#### Fixed
910
- Fixed the syntax of CHANGELOG

config-templates/tables.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ CREATE TABLE statistics (
1212
INDEX (year,month),
1313
INDEX (year,month,day),
1414
PRIMARY KEY (year, month, day, sourceIdp, service)
15-
);
15+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1616

1717
--Tables for mapping identifier to name
1818
CREATE TABLE identityProvidersMap(
1919
entityId VARCHAR(255) NOT NULL,
2020
name VARCHAR(255) NOT NULL,
2121
PRIMARY KEY (entityId)
22-
);
22+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2323

2424
CREATE TABLE serviceProvidersMap(
2525
identifier VARCHAR(255) NOT NULL,
2626
name VARCHAR(255) NOT NULL,
2727
PRIMARY KEY (identifier)
28-
);
28+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

0 commit comments

Comments
 (0)