blob: 8b0cd285c707470f80bbcc5f5a144f6769e7495c (
plain)
1
2
3
4
5
6
7
|
BEGIN TRANSACTION;
ALTER TABLE useragents add currentLookAtX float not null default 128;
ALTER TABLE useragents add currentLookAtY float not null default 128;
ALTER TABLE useragents add currentLookAtZ float not null default 70;
COMMIT;
|