Change sorting order on ML display to use sort_name.
[platal.git] / upgrade / account / 03_carva.sql
CommitLineData
d0293d9b 1drop table if exists carvas;
c1e98576
FB
2create table carvas (
3 uid int(6) not null,
4 url varchar(255) not null,
5
6 primary key uid (uid)
950bf4f6 7) ENGINE=InnoDB, CHARSET=utf8;
c1e98576
FB
8
9# vim:set syntax=mysql: