mirror of https://github.com/buster-so/buster.git
migration for password that I thought was done?
This commit is contained in:
parent
1684dad78c
commit
88e8af539e
|
@ -0,0 +1,7 @@
|
|||
-- This file should undo anything in `up.sql`
|
||||
|
||||
ALTER TABLE metric_files
|
||||
DROP COLUMN public_password;
|
||||
|
||||
ALTER TABLE dashboard_files
|
||||
DROP COLUMN public_password;
|
|
@ -0,0 +1,7 @@
|
|||
-- Your SQL goes here
|
||||
|
||||
ALTER TABLE metric_files
|
||||
ADD COLUMN public_password TEXT;
|
||||
|
||||
ALTER TABLE dashboard_files
|
||||
ADD COLUMN public_password TEXT;
|
|
@ -151,7 +151,7 @@ mod tests {
|
|||
### Phase 2: Bug Fixes (Concurrent) 🔜 (Not Started)
|
||||
|
||||
#### Sub-PRDs
|
||||
1. [HTTP Status Code Fix](api_http_status_fix.md)
|
||||
1. [HTTP Status Code Fix](api_http_status_fix.md) ✅
|
||||
- Dependencies: Test Infrastructure
|
||||
- Can be developed concurrently with: 2, 3, 4
|
||||
- Testing Requirements:
|
||||
|
@ -162,7 +162,7 @@ mod tests {
|
|||
- Error scenarios
|
||||
- Permission checks
|
||||
|
||||
2. [Metric Status Update Fix](api_metric_status_fix.md)
|
||||
2. [Metric Status Update Fix](api_metric_status_fix.md) ✅
|
||||
- Dependencies: Test Infrastructure
|
||||
- Can be developed concurrently with: 1, 3, 4
|
||||
- Testing Requirements:
|
||||
|
@ -173,7 +173,7 @@ mod tests {
|
|||
- Full update flow
|
||||
- State verification
|
||||
|
||||
3. [Sharing Parameters Fix](api_sharing_parameters_fix.md)
|
||||
3. [Sharing Parameters Fix](api_sharing_parameters_fix.md) ✅
|
||||
- Dependencies: Test Infrastructure
|
||||
- Can be developed concurrently with: 1, 2, 4
|
||||
- Testing Requirements:
|
||||
|
@ -184,7 +184,7 @@ mod tests {
|
|||
- Sharing scenarios
|
||||
- Permission checks
|
||||
|
||||
4. [Permission Field Fix](api_permission_field_fix.md)
|
||||
4. [Permission Field Fix](api_permission_field_fix.md) ✅
|
||||
- Dependencies: Test Infrastructure
|
||||
- Can be developed concurrently with: 1, 2, 3
|
||||
- Testing Requirements:
|
||||
|
|
Loading…
Reference in New Issue