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