pardom-zz / ActiveAndroid

Active record style SQLite persistence for Android
http://www.activeandroid.com
4.7k stars 1.03k forks source link

How to add a new table? #528

Closed HuQiaomu closed 7 years ago

HuQiaomu commented 7 years ago

I know how to add a new field, but not find a way to add a new table I try to change database version, but dont work

uncledoc commented 7 years ago

In your actions there is an error.

  1. Add new class with @Table annotation
  2. Increase database version. .... 4.Profit (:
HuQiaomu commented 7 years ago

thanks for your help.