Changes between Version 85 and Version 86 of AjaxList


Ignore:
Timestamp:
2010-12-06T18:33:17Z (13 years ago)
Author:
Serge Okon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AjaxList

    v85 v86  
    274274
    275275{{{
    276 #!php
     276#!sql
    277277$joinTables =
    278278    array( "joinTable" => "table_name", // -- Same format as the last section
     
    295295==== Create sample tables & data====
    296296{{{
     297CREATE TABLE `ipeer`.`ajax_list_sample_data` (
     298  `id` int  NOT NULL AUTO_INCREMENT,
     299  `name` text  NOT NULL,
     300  `type` int  NOT NULL,
     301  `eaten` date  NOT NULL,
     302  PRIMARY KEY (`id`)
     303)
    297304}}}
    298305