article_id int(6) unsigned zerofill primary key auto_increment
title varchar(250)
abstract text (NOTE: this is where I key keywords that go in a meta tag page heads)
body mediumtext (this is the body of the article itself ... do I have enough room here for relatively standard web articles?)
category enum (a whole list of kinds of articles ... categories into which our articles fall)
publish enum ('n','y') (this is auto-set to n for new content, must be flipped over via a web-based control system by a content editor to Y for it to be published online
html enum ('n','y') (I want to submit some articles containing html, but I don't want non-technical ppl doing that. Auto-set to N, when set to Y there's different formatting procedures applied in eventual article)
date timestamp(12) (assigns current date to article ... used to determine article order on site)
author varchar(100)
email varchar(100)
password varchar(25) (I don't actually use this field right now, as I store this in another table.
Well, what do you think ... will this do me?
The main question I have is whether the body field, which is mediumtext, has enough room for my content articles. I think it does ... what does it contain, something like 200 K or so, which ought to be plenty for any and all articles I can think of.
But I'd like some second opinions.
Thanks again!
-john