mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-07 01:28:52 -06:00
5 lines
251 B
SQL
5 lines
251 B
SQL
drop table Score
|
|
create table Score ( id integer primary key autoincrement, habit integer references habits(id), score real, timestamp integer)
|
|
create index idx_score_habit_timestamp on Score(habit, timestamp)
|
|
delete from streak
|
|
delete from checkmarks |