1
0
mirror of https://github.com/google/nomulus synced 2026-07-20 15:02:30 +00:00

Flyway file for autogenerated PackagePromotion id fix (#1789)

* Flyway file for autogenerated PackagePromotion id fix

* Actually include the flyway file
This commit is contained in:
sarahcaseybot
2022-09-15 13:28:46 -04:00
committed by GitHub
parent e21f64b745
commit 5f41adf843
5 changed files with 1025 additions and 955 deletions
@@ -661,6 +661,25 @@ CREATE TABLE public."PackagePromotion" (
);
--
-- Name: Package_promotion_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public."Package_promotion_id_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: Package_promotion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public."Package_promotion_id_seq" OWNED BY public."PackagePromotion".package_promotion_id;
--
-- Name: PollMessage; Type: TABLE; Schema: public; Owner: -
--
@@ -1104,6 +1123,13 @@ ALTER TABLE ONLY public."ClaimsList" ALTER COLUMN revision_id SET DEFAULT nextva
ALTER TABLE ONLY public."DomainTransactionRecord" ALTER COLUMN id SET DEFAULT nextval('public."DomainTransactionRecord_id_seq"'::regclass);
--
-- Name: PackagePromotion package_promotion_id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public."PackagePromotion" ALTER COLUMN package_promotion_id SET DEFAULT nextval('public."Package_promotion_id_seq"'::regclass);
--
-- Name: PremiumList revision_id; Type: DEFAULT; Schema: public; Owner: -
--