Skip to content

Commit

Permalink
remove redundant keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed May 25, 2023
1 parent e2c8eeb commit 2875351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func Migrate(ctx context.Context, db *sql.DB) error {
return err
}

if _, err := db.ExecContext(ctx, `CREATE TABLE IF NOT EXISTS hashtags(note id STRING NOT NULL, hashtag STRING COLLATE NOCASE NOT NULL)`); err != nil {
if _, err := db.ExecContext(ctx, `CREATE TABLE IF NOT EXISTS hashtags(note STRING NOT NULL, hashtag STRING COLLATE NOCASE NOT NULL)`); err != nil {
return err
}

Expand Down

0 comments on commit 2875351

Please sign in to comment.