Skip to content

Instantly share code, notes, and snippets.

@skhatri
Created December 25, 2011 07:26
Show Gist options
  • Save skhatri/1518846 to your computer and use it in GitHub Desktop.
Save skhatri/1518846 to your computer and use it in GitHub Desktop.
database script version table
DROP TABLE IF EXISTS version_info;
create table version_info(
version bigint(10) not null,
filename varchar(100),
starttime timestamp,
endtime timestamp,
primary key(version)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment