kartoza / smallfarming-gis

An Open Source project for supporting Small Farmers
0 stars 15 forks source link

NAMING CONVENTION

SQL statements and syntax should be upper case for example:

SELECT * FROM electricity_line;

Entity Names should be Singular for example:

electricity_line_type not electricity_line_types

Entity Names should be lower case, underscore separated (_), for example:

water_point not WaterPoint

Lookup Table names should be in lower case, for example:

electricity_line_condition not ElectricityLineCondition

ADDITIONAL INFORMATION

Any columns with units should include units

crown_radius_m not crown_radius

ERD conventions