Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Summary

This table provides information about the authors of measures; its primary key is the author_id. This table keeps track of where the measures originated and provides a reference for our measures table.  An example of a measure author would be the Centers for Medicare and Medicaid Services creating the Process of Care measures.

 

Table Creation

CREATE TABLE IF NOT EXISTS `measure_authors` (
`author_id` int(11) NOT NULL AUTO_INCREMENT,
`author` text,
`created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=36 ;

Fields

fieldtypeattributesnotesexample
author_idint(11)NOT NULL AUTO_INCREMENTProvided by Pellucid01234567890
authortextDEFAULT NULLThe Name of the organization that created the measureAHRQ
createdtimestampNOT NULL DEFAULT '0000-00-00 00:00:00'The time and date that the row was created2010-05-18 09:15:36
modifiedtimestampNOT NULL DEFAULT '0000-00-00 00:00:00' on update CURRENT_TIMESTAMP The time and date that the row was last modified2010-05-18 09:15:36
  • No labels