Back to project page digital-ocean-swimmer.
The source code is released under:
MIT License
If you think the Android project digital-ocean-swimmer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.yassirh.digitalocean.data; /*from www.j av a2 s. c om*/ public class RegionTable extends TableHelper { public static final String NAME = "name"; public static final String REGION_SLUG = "region_slug"; public static final String FEATURES = "features"; public static final String AVAILABLE = "available"; public RegionTable(){ columns.put(REGION_SLUG, "string primary key"); columns.put(NAME, "text"); columns.put(FEATURES, "text"); columns.put(AVAILABLE, "integer"); TABLE_NAME = "regions"; } }