NAME
App::Zapzi::Database::Schema::Article - zapzi article table
VERSION
version 0.002
DESCRIPTION
This module defines the schema for the articles table in the Zapzi database.
ACCESSORS
id
Unique ID for this article
data_type: 'integer'
is_auto_increment: 1
is_nullable: 0
title
Title of this book.
data_type: 'text'
default_value: 'Unknown'
is_nullable: 0
folder
FK to folders
data_type: 'integer'
is_nullable: 0
created
Date/time article was created
data_type: 'datetime'
default_value: datetime('now','localtime')
is_nullable: 0
PRIMARY KEY
RELATIONSHIPS
Belongs to
folder (-> Folder)
Might have
article_text (-> ArticleText)
AUTHOR
Rupert Lane <rupert@rupert-lane.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Rupert Lane.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.