From c9b39972cadd23ccaf526bd28ce38abc6ed0c5de Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 1 Aug 2008 02:54:28 +0000 Subject: [PATCH] Add the missing migration files :/ --- OpenSim/Data/MySQL/Resources/014_RegionStore.sql | 8 ++++++++ OpenSim/Data/SQLite/Resources/007_RegionStore.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 OpenSim/Data/MySQL/Resources/014_RegionStore.sql create mode 100644 OpenSim/Data/SQLite/Resources/007_RegionStore.sql diff --git a/OpenSim/Data/MySQL/Resources/014_RegionStore.sql b/OpenSim/Data/MySQL/Resources/014_RegionStore.sql new file mode 100644 index 0000000000..788fd63c42 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/014_RegionStore.sql @@ -0,0 +1,8 @@ +begin; + +alter table estate_settings add column AbuseEmail varchar(255) not null; + +alter table estate_settings add column EstateOwner varchar(36) not null; + +commit; + diff --git a/OpenSim/Data/SQLite/Resources/007_RegionStore.sql b/OpenSim/Data/SQLite/Resources/007_RegionStore.sql new file mode 100644 index 0000000000..1c813a0d40 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/007_RegionStore.sql @@ -0,0 +1,8 @@ +begin; + +alter table estate_settings add column AbuseEmail varchar(255) not null default ''; + +alter table estate_settings add column EstateOwner varchar(36) not null default ''; + +commit; +