LoginSignup
4
4

More than 5 years have passed since last update.

rails new の瞬間から既に戦いは始まっている…!

Posted at
rails new my-awesome-app -d postgresql

ではここで config/database.yml を見てみましょう.

# (前略)
development:                   
  adapter: postgresql          
  encoding: unicode            
  database: my-awesome-app_development
  pool: 5
  username: my-awesome-app     
  password:
# (後略)

データベース名とユーザ名にハイフンが含まれていますね.ここを書き換える予定がある人とかならいいんですけど例えば初めて Heroku 使ってみる (PostgreSQL 自体初めてみたいな) 人とかこういういらんことで困りたくないです.

rails new my_awesome_app -d postgresql

まぁこうしておけば問題ないかと.

ダブルクォートでくくれば大丈夫とか色々 Google 先生が教えてくれますけど,そもそも SQL の Identifier にハイフンはあまり望ましいものじゃないとのことで.

References

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4