Changes between Initial Version and Version 1 of S3/CustomTables


Ignore:
Timestamp:
09/09/21 12:44:31 (4 years ago)
Author:
Fran Boon
Comment:

Custom Tables

Legend:

Unmodified
Added
Removed
Modified
  • S3/CustomTables

    v1 v1  
     1= Custom Tables =
     2
     3Templates can define their own custom nodels without needing to touch the core code. tablename should be "custom_%s" % resourcename
     4
     5Add a dict (or !OrderedDict if want to manage dependency order), like:
     6{{{
     7settings.models = {tablename: function}
     8}}}
     9
     10The called function would look something like:
     11{{{
     12def define_custom_test(db, tablename):
     13
     14   from gluon import Field
     15
     16   table = db.define_table(tablename,
     17                           Field("test"),
     18                           )
     19
     20   return table
     21}}}
     22
     23If wanting to have a REST controller for them, then also add "custom" to settings.modules and add an entry to the rest_controllers:
     24{{{
     25settings.base.rest_controllers = {("custom", resourcename): ("custom", resourcename)}
     26}}}
     27