homescreenapp/hsapplication/conf/base/implml/homescreendb_templates/create.sql
changeset 39 4e8ebe173323
parent 36 cdae8c6c3876
child 46 23b5d6a29cce
--- a/homescreenapp/hsapplication/conf/base/implml/homescreendb_templates/create.sql	Fri Apr 16 14:54:01 2010 +0300
+++ b/homescreenapp/hsapplication/conf/base/implml/homescreendb_templates/create.sql	Mon May 03 12:24:59 2010 +0300
@@ -4,7 +4,11 @@
   portraitWallpaper TEXT,
   landscapeWallpaper TEXT,
   defaultPageId INTEGER,
-  maximumPageCount INTEGER);
+  maximumPageCount INTEGER,
+  maximumWidgetHeight INTEGER,
+  maximumWidgetWidth INTEGER,
+  minimumWidgetHeight INTEGER,
+  minimumWidgetWidth INTEGER);
 
 DROP TABLE IF EXISTS Pages;
 CREATE TABLE Pages (
@@ -22,8 +26,6 @@
   key TEXT,
   x REAL,
   y REAL,
-  width REAL,
-  height REAL,
   zValue REAL,	
   widgetId INTEGER,
   UNIQUE(widgetId, key) ON CONFLICT REPLACE,