Rails remove old models with migrations

后端 未结 7 1928
傲寒
傲寒 2021-02-13 01:41

I have a bunch of rails models that i\'m re-writing into a single model to simplify my code and reduce unnecessary tables.

I\'m wondering what the best way to delete a

7条回答
  •  醉话见心
    2021-02-13 02:09

    If you'd like to completely get rid of of a model and its table do this:

    rails destroy model Name
    

提交回复
热议问题