Postgresql, create database

Postgresql, create database

sudo -u postgres psql postgres=# CREATE DATABASE test_database; CREATE DATABASE postgres=# CREATE USER test_user WITH password 'qwerty'; CREATE ROLE postgres=# GRANT ALL privileges ON DATABASE test_database TO test_user; GRANT # drop database postgres=# DROP DATABASE test_database; DROP DATABASE  

Read More →

Django ORM. Comparison operations.

Django ORM. Comparison operations.

  Mathematical notation ORM Greater than > __gt Greater than or equal to => __gte Less than < __lt Less than or equal to  =< __lte Equal = =  

Read More →

Bundle vue.js - gzip compression

Bundle vue.js - gzip compression

Sometimes loading compiled vue.js bundles takes a long time, in such case it makes sense to set gzip compression. To do this, need to install webpack CompressionPlugin, after this in the file vue.config.js: const CompressionPlugin = require("compression-webpack-plugin"); configureWebpack: { plugins: [ new Com...

Read More →

Search
Popular Posts
Subscribe
{{post}}