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
| (a)pip install virtual env | |
| (b)virtualenv myenv | |
| (c)source myenv/bin/activate | |
| Pylint setup | |
| { |
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
| SET search_path TO unittrust; | |
| ALTER SEQUENCE um_counties_id_seq RESTART WITH 1 | |
| CREATE SEQUENCE um_banks_id_seq START 1; |
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
| SELECT id, name, display_name, description, created_at, updated_at | |
| FROM unittrust.um_permissions; | |
| SELECT Max(id)FROM unittrust.um_permissions; | |
| SELECT *FROM unittrust.um_permissions | |
| WHERE name LIKE '%system-modules%'; | |
| ALTER SEQUENCE um_mod_permissions_id_seq RESTART WITH 1; | |
| ALTER SEQUENCE um_permissions_id_seq RESTART WITH 1; |
OlderNewer