Back to project page SQLiteMigrationManager.
The source code is released under:
Apache License
If you think the Android project SQLiteMigrationManager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Layer Android SDK/*w w w . j a v a 2s . c o m*/ * * Created by Steven Jones on 6/6/14 * Copyright (c) 2013 Layer. All rights reserved. */ package com.layer.sqlite.datasource; import com.layer.sqlite.migrations.Migration; import com.layer.sqlite.schema.Schema; import java.util.List; public interface DataSource { public boolean hasSchema(); public Schema getSchema(); public List<Migration> getMigrations(); }