arckode-framework 1.0.3 → 1.0.4
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/kernel/framework.ts +1 -1
- package/package.json +1 -1
package/kernel/framework.ts
CHANGED
|
@@ -874,7 +874,7 @@ export class ORM {
|
|
|
874
874
|
const map: Record<FieldDefinition['type'], string> = {
|
|
875
875
|
string: 'TEXT',
|
|
876
876
|
number: 'REAL',
|
|
877
|
-
boolean: '
|
|
877
|
+
boolean: 'BOOLEAN', // INTEGER falla en Postgres con DEFAULT false/true
|
|
878
878
|
json: 'TEXT',
|
|
879
879
|
date: 'TEXT',
|
|
880
880
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arckode-framework",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "AI-first TypeScript/Bun framework. Modular, SOLID, zero magic. The AI reads the composition root and knows everything.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./kernel/framework.ts",
|