Lines 3663-3668
CREATE TABLE IF NOT EXISTS columns_settings (
Link Here
|
3663 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
3663 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
3664 |
|
3664 |
|
3665 |
-- |
3665 |
-- |
|
|
3666 |
-- Table structure for table `tables_settings` |
3667 |
-- |
3668 |
|
3669 |
CREATE TABLE IF NOT EXISTS tables_settings ( |
3670 |
module varchar(255) NOT NULL, |
3671 |
page varchar(255) NOT NULL, |
3672 |
tablename varchar(255) NOT NULL, |
3673 |
default_display_length smallint(6) NOT NULL DEFAULT 20 , |
3674 |
default_sort_order varchar(255), |
3675 |
PRIMARY KEY(module (191), page (191), tablename (191) ) |
3676 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
3677 |
|
3678 |
-- |
3666 |
-- Table structure for table 'items_search_fields' |
3679 |
-- Table structure for table 'items_search_fields' |
3667 |
-- |
3680 |
-- |
3668 |
|
3681 |
|
3669 |
- |
|
|