|
Lines 3624-3629
CREATE TABLE IF NOT EXISTS columns_settings (
Link Here
|
| 3624 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
3624 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 3625 |
|
3625 |
|
| 3626 |
-- |
3626 |
-- |
|
|
3627 |
-- Table structure for table `tables_settings` |
| 3628 |
-- |
| 3629 |
|
| 3630 |
CREATE TABLE IF NOT EXISTS tables_settings ( |
| 3631 |
module varchar(255) NOT NULL, |
| 3632 |
page varchar(255) NOT NULL, |
| 3633 |
tablename varchar(255) NOT NULL, |
| 3634 |
default_display_length smallint(6) NOT NULL DEFAULT 20 , |
| 3635 |
default_sort_order varchar(255), |
| 3636 |
PRIMARY KEY(module (191), page (191), tablename (191) ) |
| 3637 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 3638 |
|
| 3639 |
-- |
| 3627 |
-- Table structure for table 'items_search_fields' |
3640 |
-- Table structure for table 'items_search_fields' |
| 3628 |
-- |
3641 |
-- |
| 3629 |
|
3642 |
|
| 3630 |
- |
|
|