migrate db to add stroke and shadow to songs
This commit is contained in:
parent
0d18724859
commit
2d68fd6477
2 changed files with 19 additions and 0 deletions
19
migrations/20260211174933_add_stroke_and_shadow.sql
Normal file
19
migrations/20260211174933_add_stroke_and_shadow.sql
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
-- Add migration script here
|
||||
ALTER TABLE songs
|
||||
ADD COLUMN stroke_size INTEGER;
|
||||
|
||||
ALTER TABLE songs
|
||||
ADD COLUMN stroke_color TEXT;
|
||||
|
||||
ALTER TABLE songs
|
||||
ADD COLUMN shadow_size INTEGER;
|
||||
|
||||
ALTER TABLE songs
|
||||
ADD COLUMN shadow_offset_x INTEGER;
|
||||
|
||||
ALTER TABLE songs
|
||||
ADD COLUMN shadow_offset_y INTEGER;
|
||||
|
||||
ALTER TABLE songs
|
||||
ADD COLUMN shadow_color TEXT;
|
||||
|
||||
BIN
test.db
BIN
test.db
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue