AntonAL
AntonAL

Reputation: 17410

Can i remove schema.rb in production

Is this file for informational purposes ?

Can it be removed in production ?

Upvotes: 1

Views: 520

Answers (1)

molf
molf

Reputation: 74945

The schema.rb is used when you execute rake db:schema:load. If you are absolutely sure you are not going to execute this Rake task in production, then yes, you could remove it.

I'm unsure why you'd want to take the time to remove it explicitly, though.

Upvotes: 4

Related Questions