ANTFARM/通用/命令
外观
在 Antfarm 中使用 Postgresql 数据库需要执行以下操作
sudo apt-get install postgresql postgresql-client postgresql-client-common postgresql-server-dev-8.3 sudo su - postgres $ createuser <user name> Shall the new role be a superuser? (y/n) y $ exit
你创建的用户将与所有 antfarm 文件关联,并且必须对所有 Antfarm 文件具有权限,这就是为什么他们在此方面被视为超级用户。
对于使用的每个环境,以下命令用于设置你的数据库。
createdb <environment name> (this only needs to be done once per environment) antfarm -e <environment name> db—migrate (this is used to create the tables) antfarm -e <environment name> db—reset (this is used to prepare the tables to be filled)