Fix #5791 - Search Criteria on Orders / Columns on orders
[Pman.Core] / sql / core_person_settings.sql
diff --git a/sql/core_person_settings.sql b/sql/core_person_settings.sql
new file mode 100644 (file)
index 0000000..3612677
--- /dev/null
@@ -0,0 +1,9 @@
+
+CREATE TABLE core_person_settings (
+    id int(11) NOT NULL auto_increment,  
+    PRIMARY KEY   (id)
+);
+
+ALTER TABLE core_person_settings ADD COLUMN person_id INT(11) NOT NULL DEFAULT 0;
+ALTER TABLE core_person_settings ADD COLUMN scope VARCHAR(254) NOT NULL DEFAULT '';
+ALTER TABLE core_person_settings ADD COLUMN data TEXT NOT NULL DEFAULT '';
\ No newline at end of file