Skip to content

Commit

Permalink
Fix typo in migration message
Browse files Browse the repository at this point in the history
  • Loading branch information
opoppe committed Apr 30, 2023
1 parent a1609ea commit 8963558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/database/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CREATE TABLE chat_settings( broadcaster_id text not null primary key, slow_mode
INSERT INTO chat_settings (broadcaster_id) SELECT id FROM users;
ALTER TABLE users ADD COLUMN chat_color text not null default '#9146FF';
CREATE TABLE vips ( broadcaster_id text not null, user_id text not null, created_at text not null default '', primary key (broadcaster_id, user_id), foreign key (broadcaster_id) references users(id), foreign key (user_id) references users(id) );`,
Message: `Updating database to include API changes since last verison. See Twitch CLI changelog for more info.`,
Message: `Updating database to include API changes since last version. See Twitch CLI changelog for more info.`,
},
}

Expand Down

0 comments on commit 8963558

Please sign in to comment.