Changes between Version 8 and Version 9 of TeamCalendarPlugin


Ignore:
Timestamp:
Sep 29, 2010, 3:34:31 AM (13 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TeamCalendarPlugin

    v8 v9  
    5858}}}
    5959
    60 For sqlite3:
     60For Sqlite3:
     61{{{
     62sqlite3 trac.db
     63}}}
     64 
    6165{{{
    6266#!sql
    63 create table team_availability (
    64    username varchar(255) not null default '',
     67CREATE TABLE team_availability (
     68   username text not null default '',
    6569   ondate date not null default (datetime('now')),
    6670   availability float default null,
    67    primary key (username,ondate)
     71   PRIMARY KEY (username,ondate)
    6872);
    6973}}}