mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: add open ai key to database (#1852)
* feat: add open ai key to database * chore: refactor code
This commit is contained in:
@ -0,0 +1 @@
|
||||
ALTER TABLE user_table DROP COLUMN openai_key;
|
@ -0,0 +1 @@
|
||||
ALTER TABLE user_table ADD COLUMN openai_key TEXT NOT NULL DEFAULT '';
|
@ -146,6 +146,7 @@ diesel::table! {
|
||||
email -> Text,
|
||||
workspace -> Text,
|
||||
icon_url -> Text,
|
||||
openai_key -> Text,
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user