Periksa perintah
def check(msg):
return msg.author == ctx.author and msg.channel == ctx.channel
Bored Batfish
def check(msg):
return msg.author == ctx.author and msg.channel == ctx.channel
CREATE TABLE Employee(
EmployeeID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
CHECK (Age>=18)
);