Skip to content

Instantly share code, notes, and snippets.

@apolishch
Created August 12, 2019 23:11
Show Gist options
  • Save apolishch/79c24cbe8566791bf4871f444087967e to your computer and use it in GitHub Desktop.
Save apolishch/79c24cbe8566791bf4871f444087967e to your computer and use it in GitHub Desktop.
export const up = (db, callback) => db.runSql(`
CREATE TABLE IF NOT EXISTS flock_payments.payments(
id bigint NOT NULL PRIMARY KEY,
policy_id bigint NOT NULL REFERENCES flock_policies.policies (id)
);
`, callback)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment