MySQL: Reorder fields in router stats tables

This is meant to reflect the order of the primary key.

This is just a change of the database!

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
Adrian Schmutzler 2017-12-28 20:34:19 +01:00
parent 47f43eab0d
commit 069da3aac4
1 changed files with 4 additions and 4 deletions

View File

@ -160,8 +160,8 @@ mysql.execute("""
mysql.execute("""
CREATE TABLE router_stats (
`router` mediumint(8) UNSIGNED NOT NULL,
`time` int(11) NOT NULL,
`router` mediumint(8) UNSIGNED NOT NULL,
`sys_proctot` smallint(6) NOT NULL,
`sys_procrun` smallint(6) NOT NULL,
`sys_memcache` int(11) NOT NULL,
@ -180,10 +180,10 @@ mysql.execute("""
mysql.execute("""
CREATE TABLE router_stats_neighbor (
`time` int(11) NOT NULL,
`router` mediumint(8) UNSIGNED NOT NULL,
`mac` char(17) COLLATE utf8_unicode_ci NOT NULL,
`quality` smallint(6) NOT NULL,
`time` int(11) NOT NULL
`quality` smallint(6) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
""")
@ -195,11 +195,11 @@ mysql.execute("""
mysql.execute("""
CREATE TABLE router_stats_netif (
`time` int(11) NOT NULL,
`router` mediumint(8) UNSIGNED NOT NULL,
`netif` smallint(6) UNSIGNED NOT NULL,
`rx` int(10) UNSIGNED NOT NULL,
`tx` int(10) UNSIGNED NOT NULL,
`time` int(11) NOT NULL,
`deletebit` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
""")