document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public @interface Column
  2. {
  3.    String name( ) default "";
  4.    boolean unique( ) default false;
  5.    boolean nullable( ) default true;
  6.    boolean insertable( ) default true;
  7.    boolean updatable( ) default true;
  8.    String columnDefinition( ) default "";
  9.    String table( ) default "";
  10.    int length( ) default 255;
  11.    int precision( ) default 0;
  12.    int scale( ) default 0;
  13. }
');