Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove invalid unique constraint
  • Loading branch information
kyleconroy committed Apr 4, 2024
commit 07c23ee33cc98bb9247c8d576f3fc72029093a97
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
CREATE TABLE authors (
id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(10) NOT NULL,
bio text,
UNIQUE(name)
id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(10) NOT NULL,
bio text
);

CREATE TABLE IF NOT EXISTS weather_metrics
Expand Down