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