Changes between Version 7 and Version 8 of TeamCalendarPlugin


Ignore:
Timestamp:
Sep 29, 2010, 3:33:18 AM (14 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TeamCalendarPlugin

    v7 v8  
    5757);
    5858}}}
     59
     60For sqlite3:
     61{{{
     62#!sql
     63create table team_availability (
     64   username varchar(255) not null default '',
     65   ondate date not null default (datetime('now')),
     66   availability float default null,
     67   primary key (username,ondate)
     68);
     69}}}
    5970== Under the hood ==
    6071