Change groups table to used new long long int type for gid

It is now possible to do a proper order on gid, ie:
SELECT * FROM groups ORDER BY gid;
This commit is contained in:
Vincent Mauge 2014-10-29 18:38:20 -07:00
parent 7876d56219
commit 755d8c198e

View File

@ -1,6 +1,6 @@
table_name("groups")
schema([
Column(name="gid", type="std::string"),
Column(name="gid", type="long long int"),
Column(name="name", type="std::string"),
])
implementation("groups@genGroups")