Skip to content

Instantly share code, notes, and snippets.

@Mparaiso
Created October 16, 2013 18:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mparaiso/7012621 to your computer and use it in GitHub Desktop.
Save Mparaiso/7012621 to your computer and use it in GitHub Desktop.
android cruid builder manifest example
{
"namespace":"com.mparaiso.crud",
"authority":"com.mparaiso.crud.Crud",
"projectName":"DEMO CRUD APPLICATION",
"dbName":"crud.db",
"dbVersion":1,
"tables":[
{
"name":"Article",
"label":"title",
"columns":[
{
"type":"integer",
"name":"_id",
"id":true
},
{
"type":"integer",
"name":"category_id"
},
{
"name":"date_created",
"type":"text"
},
{
"name":"date_updated",
"type":"text"
},
{
"type":"string",
"name":"title",
"length":200,
"unique":true,
"nullable":false
},
{
"type":"string",
"name":"content"
},
{
"type":"integer",
"name":"author_id"
}
]
},
{
"name":"Category",
"label":"title",
"columns":[
{
"type":"integer",
"name":"_id",
"id":true
},
{
"type":"string",
"name":"title",
"length":200,
"unique":true,
"nullable":false
}
]
},
{
"name":"Author",
"label":"name",
"columns":[
{
"type":"integer",
"name":"_id",
"id":true
},
{
"type":"string",
"name":"name",
"nullable":false
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment