# --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table inno_qaccount ( id bigint auto_increment not null, uid varchar(255), constraint pk_inno_qaccount primary key (id)) ; # --- !Downs SET REFERENTIAL_INTEGRITY FALSE; drop table if exists inno_qaccount; SET REFERENTIAL_INTEGRITY TRUE;