Dec
9
2010
∞
A table that should exist in all projects with a database →
create table schema_version (
`when` timestamp not null default CURRENT_TIMESTAMP,
`key` varchar(256) not null,
`extra` varchar(256),
primary key (`key`)
)