Various fixes
Fix OAuth and Realtime issues introduced in9a515b9234
[DATABASE] Fix an empty default value mistake introduced infde929b151
[DATABASE][PostgreSQL] Avoid use of pg_constraint.consrc, which was removed in PostgreSQL 12. [DATABASE][MariaDB] Fix a typo introduced inaed2344bd4
[DAEMON] Wrap an assignment inside "switch": a follow-up toadc689cb15
This commit is contained in:
@@ -44,7 +44,7 @@ class Email_summary_status extends Managed_DataObject
|
||||
public $send_summary; // bool not_null default_true
|
||||
public $last_summary_id; // int(4) null
|
||||
public $created; // datetime not_null
|
||||
public $modified; // datetime not_null
|
||||
public $modified; // timestamp not_null
|
||||
|
||||
public static function schemaDef()
|
||||
{
|
||||
|
@@ -41,7 +41,7 @@ class User_poll_prefs extends Managed_DataObject
|
||||
public $user_id; // int id
|
||||
public $hide_responses; // bool
|
||||
public $created; // datetime
|
||||
public $modified; // datetime
|
||||
public $modified; // timestamp
|
||||
|
||||
/**
|
||||
* The One True Thingy that must be defined and declared.
|
||||
|
Reference in New Issue
Block a user