Edit create migrations
This commit is contained in:
7
weather-service/migrations/000000_create_airports/up.sql
Normal file
7
weather-service/migrations/000000_create_airports/up.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS airports (
|
||||
id SERIAL PRIMARY KEY,
|
||||
full_name TEXT NOT NULL,
|
||||
icao TEXT NOT NULL,
|
||||
latitude DOUBLE PRECISION NOT NULL,
|
||||
longitude DOUBLE PRECISION NOT NULL
|
||||
)
|
||||
Reference in New Issue
Block a user