@authhero/kysely-adapter 0.13.4 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/kysely-adapter.mjs
CHANGED
|
@@ -9625,8 +9625,14 @@ const Du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9625
9625
|
up: Au
|
|
9626
9626
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
9627
9627
|
async function Ru(t) {
|
|
9628
|
+
await t.schema.alterTable("connections").addColumn(
|
|
9629
|
+
"options",
|
|
9630
|
+
"varchar(2048)",
|
|
9631
|
+
(e) => e.defaultTo("{}").notNull()
|
|
9632
|
+
).addColumn("strategy", "varchar(64)").execute();
|
|
9628
9633
|
}
|
|
9629
9634
|
async function Mu(t) {
|
|
9635
|
+
await t.schema.alterTable("connections").dropColumn("options").dropColumn("strategy").execute();
|
|
9630
9636
|
}
|
|
9631
9637
|
const Lu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9632
9638
|
__proto__: null,
|