ruv commited on
Commit
ebd398e
·
unverified ·
1 Parent(s): bc19dc4

updated SQL install

Browse files
Files changed (1) hide show
  1. sql/readme.md +12 -3
sql/readme.md CHANGED
@@ -206,9 +206,18 @@ CREATE INDEX idx_users_agents_tenant_id ON users_agents(tenant_id);
206
  ```
207
 
208
  3. Run the SQL scripts to set up the database structure:
209
- ```sh
210
- psql -h your-supabase-url -U your-username -d your-database -f path/to/sql_script.sql
211
- ```
 
 
 
 
 
 
 
 
 
212
 
213
  # Setting Up Supabase and Installing SQL Files
214
 
 
206
  ```
207
 
208
  3. Run the SQL scripts to set up the database structure:
209
+
210
+ ```sh
211
+ psql -h your-supabase-url -U your-username -d your-database -f agent_data.sql
212
+ psql -h your-supabase-url -U your-username -d your-database -f agent_interaction.sql
213
+ psql -h your-supabase-url -U your-username -d your-database -f analytics_reporting.sql
214
+ psql -h your-supabase-url -U your-username -d your-database -f chat_history_agent_details.sql
215
+ psql -h your-supabase-url -U your-username -d your-database -f command_control.sql
216
+ psql -h your-supabase-url -U your-username -d your-database -f documentation.sql
217
+ psql -h your-supabase-url -U your-username -d your-database -f governance.sql
218
+ psql -h your-supabase-url -U your-username -d your-database -f system_settings.sql
219
+ psql -h your-supabase-url -U your-username -d your-database -f users_agents.sql
220
+ ```
221
 
222
  # Setting Up Supabase and Installing SQL Files
223