Skip to content

Commit

Permalink
Rename 'name' column to 'city_name' in city table for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Vianpyro committed Nov 12, 2024
1 parent df27c47 commit 85cc6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS island (

CREATE TABLE IF NOT EXISTS city (
city_id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
name VARCHAR(100),
city_name VARCHAR(100),
island_id INT UNSIGNED NOT NULL,
x INT NOT NULL,
y INT NOT NULL,
Expand Down

0 comments on commit 85cc6d3

Please sign in to comment.