Release of plat/al 1.1.13
[platal.git] / upgrade / account / 03_carva.sql
1 drop table if exists carvas;
2 create 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: