blob: 42273bf46d2e89beca6ea6b29ebd5de3144a930e [file] [log] [blame]
CREATE TABLE @extschema@.migrationhistory(
id serial, version varchar(255), applied timestamp default current_timestamp
);
INSERT INTO @extschema@.migrationhistory(version)
VALUES('@MADLIB_VERSION_STRING@'::text);