mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 17:03:29 +03:00
feat(cms): update content type (#1477)
This commit is contained in:
parent
fbafbacc15
commit
0bf7d36629
@ -30,7 +30,7 @@
|
||||
"localized": true
|
||||
}
|
||||
},
|
||||
"type": "string"
|
||||
"type": "text"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
2
cms/quivr/types/generated/contentTypes.d.ts
vendored
2
cms/quivr/types/generated/contentTypes.d.ts
vendored
@ -823,7 +823,7 @@ export interface ApiSecurityQuestionSecurityQuestion
|
||||
localized: true;
|
||||
};
|
||||
}>;
|
||||
answer: Attribute.String &
|
||||
answer: Attribute.Text &
|
||||
Attribute.SetPluginOptions<{
|
||||
i18n: {
|
||||
localized: true;
|
||||
|
@ -1,27 +0,0 @@
|
||||
DO $$
|
||||
BEGIN
|
||||
-- Check if the column max_requests_number exists
|
||||
IF EXISTS (
|
||||
SELECT 1
|
||||
FROM information_schema.columns
|
||||
WHERE table_name='user_settings' AND column_name='max_requests_number'
|
||||
) THEN
|
||||
-- Rename the column
|
||||
ALTER TABLE user_settings RENAME COLUMN max_requests_number TO daily_chat_credit;
|
||||
END IF;
|
||||
|
||||
-- Modify default values
|
||||
ALTER TABLE user_settings ALTER COLUMN daily_chat_credit SET DEFAULT 20;
|
||||
ALTER TABLE user_settings ALTER COLUMN max_brains SET DEFAULT 3;
|
||||
END $$;
|
||||
|
||||
-- Update migrations table
|
||||
INSERT INTO migrations (name)
|
||||
SELECT '202309307004032_change_user_settings'
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM migrations WHERE name = '202309307004032_change_user_settings'
|
||||
);
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user