Skip to content

Instantly share code, notes, and snippets.

@apolishch
Last active August 12, 2019 23:12
Show Gist options
  • Save apolishch/f7064380856af308aeca847b09d59a52 to your computer and use it in GitHub Desktop.
Save apolishch/f7064380856af308aeca847b09d59a52 to your computer and use it in GitHub Desktop.
policy_migration1.js
export const up = (db, callback) => db.runSql(`
CREATE TABLE IF NOT EXISTS flock_policies.policies (
id bigint NOT NULL PRIMARY KEY DEFAULT nextval('flock_policies.policy_ids')
);
`, callback)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment