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