Hi,
I have a Jira plugin in which I am trying to create an AO table.
I have the interface like so -
package path.to;
import net.java.ao.Entity;
import net.java.ao.schema.StringLength;
public interface TempTablesTg extends Entity {
String getTableId();
void setTableId(String tableId);
@StringLength(StringLength.UNLIMITED)
String getData();
void setData(String data);
}
Inside atlassian-plugin.xml -
<ao key="temp-tables-tg">
<description>some description
</description>
<entity>path.to.TempTablesTg</entity>
</ao>
When I install this plugin, this table doesn’t get created. Why?