mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
3f7ae27b58
Summary: Sql Patch to rename the externalaccount table to user_externalaccount and to add dateCreated, dateModified fields to the updated table. Test Plan: {F41442} Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin, AnhNhan Differential Revision: https://secure.phabricator.com/D5770
6 lines
243 B
SQL
6 lines
243 B
SQL
RENAME TABLE `{$NAMESPACE}_user`.`externalaccount`
|
|
TO `{$NAMESPACE}_user`.`user_externalaccount`;
|
|
|
|
ALTER TABLE `{$NAMESPACE}_user`.`user_externalaccount`
|
|
ADD `dateCreated` INT UNSIGNED NOT NULL,
|
|
ADD `dateModified` INT UNSIGNED NOT NULL;
|