| gitflow | git |
|---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or 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
| -- This table is useful for rough statistics based on gender | |
| -- Don't consider it scientific in any way. | |
| -- | |
| -- Example use: | |
| -- select COALESCE( | |
| -- (SELECT gender | |
| -- FROM gender_types | |
| -- WHERE name=users.first_name | |
| -- LIMIT 1), | |
| -- 'U') gender_type, count(*) |