-
Notifications
You must be signed in to change notification settings - Fork 1k
Schema migrations
Michael Pardo edited this page Sep 24, 2013
·
15 revisions
If new classes are added, ActiveAndroid will automatically add them to the database. If you want to change something in an existing table however (e.g. add or delete a column), this is done using sql-scripts which can be put in assets/migrations
. Whenever your schema (i.e. classes that extend Model
) changes you need to
- increase the meta-information AA_DB_VERSION.
- provide a script
<NewVersion>.sql
in/assets/migrations
.
ActiveAndroid will execute a script if its filename if greater then the old database-version and smaller or equal to the new version.
Let’s assume you added a column colour
to the Items
table. You now need to increase AA_DB_VERSION to 2 and provide a script 2.sql
.
alter table Items add colour(varchar);