Skip to content

Commit

Permalink
Merge pull request #144 from ebean-orm/wip/91-early-checksum-2
Browse files Browse the repository at this point in the history
Change the column order only for create table
  • Loading branch information
rob-bygrave authored Nov 2, 2023
2 parents c79dd22 + f942235 commit 83f6557
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
create table ${table} (
id integer not null,
mchecksum integer not null,
mtype varchar(1) not null,
mstatus varchar(10) not null,
mversion varchar(150) not null,
mcomment varchar(150) not null,
mchecksum integer not null,
mstatus varchar(10) not null,
run_on timestamp not null,
run_by varchar(30) not null,
run_time integer not null,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
create table ${table} (
id integer not null,
mchecksum integer not null,
mtype varchar(1) not null,
mstatus varchar(10) not null,
mversion varchar(150) not null,
mcomment varchar(150) not null,
mchecksum integer not null,
mstatus varchar(10) not null,
run_on datetime2 not null,
run_by varchar(30) not null,
run_time integer not null,
Expand Down

0 comments on commit 83f6557

Please sign in to comment.