most recent users first

This commit is contained in:
Shish 2020-03-09 23:51:01 +00:00
parent 7b59eebb0a
commit d18d25b3d1

View File

@ -54,7 +54,7 @@ class UserTable extends Table
new DateColumn("joindate", "Join Date"), new DateColumn("joindate", "Join Date"),
new UserActionColumn(), new UserActionColumn(),
]); ]);
$this->order_by = ["name"]; $this->order_by = ["id DESC"];
$this->table_attrs = ["class" => "zebra"]; $this->table_attrs = ["class" => "zebra"];
} }
} }