Robin Bygrave
|
c7300a1707
|
#246 - ENH: Add ebean.ddl.initsql=.... to support executing a sql script prior to running the create all DDL - was - When the scripts generates the evolution, it should generate the create schema too.
|
2016-01-07 13:12:43 +13:00 |
|
Robin Bygrave
|
c48008c4b2
|
#515 - ENH: Add ebean.ddl.seedSql=xxx.sql ... such that a sql script will execute to insert seed data typically for testing
|
2016-01-07 12:48:55 +13:00 |
|
Robin Bygrave
|
e5d8804591
|
#514 - ENH: Add ebean.ddl.createOnly=true ... such that all the drop table statements are skipped (for running tests against H2 usually)
|
2016-01-07 10:06:35 +13:00 |
|
Robin Bygrave
|
7bcf1da823
|
#506 - Changes to DB Migration, support run on startup and external version numbering - suffix/subdirectory refactor
|
2016-01-05 21:21:16 +13:00 |
|
Rob Bygrave
|
2ccd8dabeb
|
Merge pull request #510 from apuckey/master
Added support for custom database functions that have multiple arguments
|
2016-01-05 10:25:19 +13:00 |
|
Robin Bygrave
|
f9800dd59e
|
#509 - ExpressList.notIn method does not work
|
2016-01-05 09:11:14 +13:00 |
|
Robin Bygrave
|
fb3e8b9fc4
|
#511 - PagedList getTotalRowCount() includes soft deleted rows in its count
|
2016-01-05 07:37:17 +13:00 |
|
Antony Puckey
|
18be5989c7
|
Added support for custom database functions that have multiple arguments
seperated by commas inside brackets.
|
2015-12-29 11:06:22 +10:00 |
|
Robin Bygrave
|
be91e3f3f7
|
#506 - Changes to DB Migration, support run on startup and external version numbering
|
2015-12-24 16:41:06 +13:00 |
|
Robin Bygrave
|
03a9aa3dec
|
#507 - PropertiesWrapper support null enum values with getEnum()
|
2015-12-24 15:23:25 +13:00 |
|
Robin Bygrave
|
a2a301beda
|
No effective change - remove commented out lines
|
2015-12-23 09:13:31 +13:00 |
|
Robin Bygrave
|
695e4f653b
|
No effective change - typo in comment
|
2015-12-23 07:38:58 +13:00 |
|
Robin Bygrave
|
e84c75929c
|
#505 - Remove unused method - EntityBean._ebean_createCopy();
|
2015-12-22 17:04:51 +13:00 |
|
Robin Bygrave
|
f9a3dfeda0
|
#503 - @DraftDirty should be marked as not null automatically
|
2015-12-22 07:52:05 +13:00 |
|
Robin Bygrave
|
eb85931fe2
|
#500 - Change raw(String, Object[]) expression to varargs raw(String, Object...)
|
2015-12-16 08:11:32 +13:00 |
|
Robin Bygrave
|
4e665fd66f
|
#499 - DDL issue for entity bean that is both @Draftable with @History - draft only columns included in history table
|
2015-12-15 15:44:22 +13:00 |
|
Robin Bygrave
|
e3e45929f0
|
#498 - @Draftable - lazy loading after stateless update results in - EntityNotFoundException: Bean not found during lazy load or refresh
|
2015-12-15 15:15:20 +13:00 |
|
Robin Bygrave
|
2caeafaaa2
|
#498 - @Draftable - lazy loading after stateless update results in - EntityNotFoundException: Bean not found during lazy load or refresh
|
2015-12-15 14:38:39 +13:00 |
|
Robin Bygrave
|
5cd21de174
|
#496 - @EnumValue is being trimmed, may result in unexpected behaviour with CHAR columns for some database systems
|
2015-12-14 17:21:01 +13:00 |
|
Robin Bygrave
|
282463c2e8
|
#247 - @AttributeOverride at class level not read - was: @AttributeOverride annotation does not seem to work (Play 2.2.0 - ebean 3.2.2)
|
2015-12-11 10:23:34 +13:00 |
|
Robin Bygrave
|
e4fa031cd3
|
#494 - ENH: Support findPagingList() ... that uses firstRow & maxRows (rather than pageIndex, pageSize)
|
2015-12-10 14:52:27 +13:00 |
|
Robin Bygrave
|
00d227c598
|
#491 - RawSqlParser doesn't seem to understand new lines directly after the SELECT keyword
|
2015-12-09 17:24:58 +13:00 |
|
Robin Bygrave
|
fb86cb91bc
|
#492 - MS Sql Server DDL - Fix for drop constraint syntax (remove extra IF EXISTS) and ignore table and column comments
|
2015-12-09 16:59:51 +13:00 |
|
Robin Bygrave
|
638446680c
|
#365 - ENH: Add @DbComment with DDL generation of table and column comments
|
2015-12-09 16:52:58 +13:00 |
|
Robin Bygrave
|
1c6363e85c
|
#490 - Invalid SQL for generating ID from sequence on DB2
|
2015-12-09 12:44:27 +13:00 |
|
Robin Bygrave
|
b8bcbd8af9
|
#489 - @Draftable - insert does not set 'draft' to true ... so subsequent update fails
|
2015-12-09 11:06:48 +13:00 |
|
Robin Bygrave
|
d70768277b
|
#488 - BeanPropertyAssocManyJsonHelp error when Jackson not in classPath
|
2015-12-09 11:00:21 +13:00 |
|
Robin Bygrave
|
b39b4a2e8c
|
#487 - DDL - @SoftDelete deleted column should have NOT NULL constraint in create table DDL
|
2015-12-09 10:27:04 +13:00 |
|
Robin Bygrave
|
93b2f4035c
|
#485 - @SoftDelete with join to nullable relation (optional @ManyToOne for example) ... will incorrectly filter out row from result when FK value is null.
|
2015-12-09 10:12:25 +13:00 |
|
Robin Bygrave
|
31ee0c4582
|
#486 - Postgres DDL - Add "if exists" to alter table [if exists] drop constraint if exists ....
|
2015-12-09 10:06:03 +13:00 |
|
Robin Bygrave
|
f252b80c2d
|
#476 - ENH: Enable ServiceConfig to use alternate ClassLoader - was ServiceConfig add setClassloader api --- part 3: Refactor with ClassLoadConfig
|
2015-12-07 22:13:27 +13:00 |
|
Robin Bygrave
|
2859ea657e
|
#484 - JDBC4+ drivers do not need Class.forName() registration - removing that call
|
2015-12-07 21:02:00 +13:00 |
|
Robin Bygrave
|
664b1cbd75
|
#476 - ENH: Enable ServiceConfig to use alternate ClassLoader - was ServiceConfig add setClassloader api --- part 2 : Use current context classLoader
|
2015-12-07 17:41:56 +13:00 |
|
Robin Bygrave
|
8bc283fef4
|
#476 - ENH: Enable ServiceConfig to use alternate ClassLoader - was ServiceConfig add setClassloader api --- part 1 : protected methods
|
2015-12-07 17:37:59 +13:00 |
|
Robin Bygrave
|
7d85398139
|
#483 - ENH: Draftable - Add FK from live table back to draft table (for top level @Draftable tables)
|
2015-12-07 15:21:22 +13:00 |
|
Robin Bygrave
|
f42be3d65a
|
#482 - ENH: @Draftable - Save or update is not allowed on a 'live' bean - only draft beans ... add this check when @Draft property is used
|
2015-12-07 12:09:10 +13:00 |
|
Robin Bygrave
|
ff8e5af4e5
|
#481 - ENH: @Draftable ... add support for transient @Draft boolean draft; property ... used to distinguish a 'live' instance from a 'draft' instance.
|
2015-12-07 11:11:22 +13:00 |
|
Robin Bygrave
|
526d67eeb4
|
No effective change - whitespace
|
2015-12-07 11:02:32 +13:00 |
|
Robin Bygrave
|
374fc8d702
|
#480 - @History trigger on @Draftable does not exclude the @DraftOnly and @DraftDirty properties - ERROR: column "dirty" of relation "link_history" does not exist Where: PL/pgSQL function link_history_version()
|
2015-12-07 09:44:34 +13:00 |
|
Robin Bygrave
|
9c6c59afab
|
#479 - Insert of @Draftable with getGeneratedKeys ... PersistenceException executing insert
|
2015-12-07 09:21:26 +13:00 |
|
Robin Bygrave
|
c3eae0d3a5
|
#477 - findUnique() should throw NonUniqueResultException and not PersistenceException
|
2015-12-04 11:12:45 +13:00 |
|
Robin Bygrave
|
8318bbc4ca
|
#118 - Additional: Add query includeSoftDeletes() asDraft() to ExpressionList (for fluid style when added after predicates)
|
2015-12-03 17:42:26 +13:00 |
|
Robin Bygrave
|
337646a6ce
|
No effective change - javadoc update
|
2015-12-03 16:47:19 +13:00 |
|
Robin Bygrave
|
0fe691112f
|
Merge branch 'softDelete1' into softDelete2
|
2015-12-03 00:33:47 +13:00 |
|
Robin Bygrave
|
aea7a7fd65
|
#118 - ENH: Add support for for Soft Deletes (Logical Deletion) ...
|
2015-12-02 23:46:26 +13:00 |
|
Robin Bygrave
|
f39a684c8e
|
#118 - ENH: Add support for for Soft Deletes (Logical Deletion) ...
|
2015-12-02 21:38:34 +13:00 |
|
Robin Bygrave
|
3cb5854786
|
#475 - Unique constraint name not unique when using @Draftable
|
2015-12-02 07:57:27 +13:00 |
|
Robin Bygrave
|
0ad52cf6a7
|
#118 - ENH: Add support for for Soft Deletes (Logical Deletion) ... - initial
|
2015-12-01 23:21:11 +13:00 |
|
Robin Bygrave
|
51bee836d4
|
#472 - DDL column ordering for @WhoCreated / @WhoModified. These columns should appear in the DDL with the @WhenCreated/@WhenModified columns.
|
2015-12-01 10:19:36 +13:00 |
|
Robin Bygrave
|
9193b6b971
|
No effective change - remove whitespace
|
2015-12-01 09:32:09 +13:00 |
|