1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

feat: extract machine name from heartbeat requests (resolve #47)

This commit is contained in:
Ferdinand Mütsch
2020-08-29 21:20:23 +02:00
parent c0d6855546
commit 08a83af8da
4 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,11 @@
-- +migrate Up
-- SQL in section 'Up' is executed when this migration is applied
alter table users
add `machine` varchar(255);
-- +migrate Down
-- SQL section 'Down' is executed when this migration is rolled back
alter table users
drop column `machine`;