Add licenseKey column to user_temp table and update journal and snapshot metadata for version 0090

This commit is contained in:
Mauricio Siu
2025-05-02 03:04:51 -06:00
parent bbc2cbc78c
commit 73d9373c70
4 changed files with 5469 additions and 1 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE "user_temp" ADD COLUMN "licenseKey" text;

File diff suppressed because it is too large Load Diff

View File

@@ -631,6 +631,13 @@
"when": 1745812150155,
"tag": "0089_dazzling_marrow",
"breakpoints": true
},
{
"idx": 90,
"version": "7",
"when": 1746156076450,
"tag": "0090_tiny_phil_sheldon",
"breakpoints": true
}
]
}

View File

@@ -20,7 +20,6 @@ const Page = () => {
<div className="h-full rounded-xl max-w-5xl mx-auto flex flex-col gap-4">
<WebDomain />
<WebServer />
{!isCloud && <EnablePaidFeatures />}
<div className="w-full flex flex-col gap-4">
<Card className="h-full bg-sidebar p-2.5 rounded-xl mx-auto w-full">
<ShowBackups
@@ -30,6 +29,7 @@ const Page = () => {
/>
</Card>
</div>
{!isCloud && <EnablePaidFeatures />}
</div>
</div>
);