feat(i18n): localize portal account settings
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE `project_revisions` ADD `source_locale` text;
|
||||
@@ -85,6 +85,13 @@
|
||||
"when": 1784626279393,
|
||||
"tag": "0011_tricky_mordo",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 12,
|
||||
"version": "6",
|
||||
"when": 1784627370000,
|
||||
"tag": "0012_portal_revision_locale",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -326,6 +326,7 @@ export const projectRevisions = sqliteTable(
|
||||
.notNull()
|
||||
.references(() => user.id, { onDelete: "cascade" }),
|
||||
description: text("description").notNull(),
|
||||
sourceLocale: text("source_locale"),
|
||||
status: text("status").$type<RevisionStatus>().default("pending").notNull(),
|
||||
createdAt: integer("created_at", { mode: "timestamp_ms" }).default(nowMs).notNull(),
|
||||
updatedAt: integer("updated_at", { mode: "timestamp_ms" })
|
||||
|
||||
Reference in New Issue
Block a user