7 lines
166 B
SQL
7 lines
166 B
SQL
SET @now_ms = UNIX_TIMESTAMP(CURRENT_TIMESTAMP(3)) * 1000;
|
|
|
|
UPDATE admin_menus
|
|
SET title = '全站机器人',
|
|
updated_at_ms = @now_ms
|
|
WHERE code = 'game-robots';
|