mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
7 lines
146 B
SQL
7 lines
146 B
SQL
use translog;
|
|
DROP VIEW IF EXISTS `suspendedtoday`;
|
|
|
|
create view suspendedtoday as
|
|
select * from suspended
|
|
where datediff(datetime, now()) = 0;
|