-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f21eb3
commit 76eeea2
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,20 @@ jobs: | |
ssh -i "~/.ssh/id_aws.pem" [email protected] ' | ||
ls; | ||
psql --host=geodb.cfhjsivstphy.us-east-1.rds.amazonaws.com --port=5432 --username=postgres --dbname=geodb; | ||
echo "Another command"; | ||
# echo "Another command"; | ||
# Add more commands as needed | ||
CREATE TABLE khm_geo ( | ||
geo_id VARCHAR NOT NULL, | ||
deped_id VARCHAR, | ||
school_name VARCHAR, | ||
address VARCHAR, | ||
adm0 VARCHAR, | ||
adm1 VARCHAR, | ||
adm2 VARCHAR, | ||
adm3 VARCHAR, | ||
longitude VARCHAR, | ||
latitude VARCHAR | ||
); | ||
' |