-- Conditions Table
CREATE TABLE {prefix}jobs (
id INT NOT NULL AUTO_INCREMENT,
- title TINYINT NULL DEFAULT '',
+ title TINYTEXT NULL DEFAULT '',
descr TEXT NULL DEFAULT '',
salary TINYTEXT NULL DEFAULT '',
location TINYTEXT NULL DEFAULT '',
contactname TINYTEXT NULL DEFAULT '',
contactphone TINYTEXT NULL DEFAULT '',
- post_date DATETIME NULL DEFAULT '',
- visible BOOL NULL DEFAULT '',
+ post_date DATETIME NULL DEFAULT NOW(),
+ visible BOOL NULL,
facility_operation TEXT NULL DEFAULT '',
requirements TEXT NULL DEFAULT '',
benefits TEXT NULL DEFAULT '',
- joblocation TINYTEXT NULL DEFAULT '',
- post TINYTEXT NULL DEFAULT '30 days',
+ job_location TINYTEXT NULL DEFAULT '',
+ job_expiration TINYTEXT NULL,
duration TINYTEXT NULL DEFAULT '',
deadline TINYTEXT NULL DEFAULT '',
course_operation TINYTEXT NULL DEFAULT '',
position_available TINYTEXT NULL DEFAULT '',
- member INT NULL DEFAULT '',
+ member INT NULL,
PRIMARY KEY (id)
);