mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 04:07:04 +00:00
feat(format): Formated all playwright code
This commit is contained in:
@@ -1,21 +1,58 @@
|
||||
const mysqlSakilaTables = [
|
||||
'actor', 'address', 'category', 'city', 'country', 'customer', 'film', 'film_text', 'language', 'payment', 'rental', 'staff'
|
||||
]
|
||||
'actor',
|
||||
'address',
|
||||
'category',
|
||||
'city',
|
||||
'country',
|
||||
'customer',
|
||||
'film',
|
||||
'film_text',
|
||||
'language',
|
||||
'payment',
|
||||
'rental',
|
||||
'staff',
|
||||
];
|
||||
|
||||
const mysqlSakilaSqlViews = [
|
||||
'actor_info', 'customer_list', 'film_list', 'nicer_but_slower_film_list', 'sales_by_film_category', 'sales_by_store', 'staff_list'
|
||||
]
|
||||
'actor_info',
|
||||
'customer_list',
|
||||
'film_list',
|
||||
'nicer_but_slower_film_list',
|
||||
'sales_by_film_category',
|
||||
'sales_by_store',
|
||||
'staff_list',
|
||||
];
|
||||
|
||||
const pgSakilaTables = [
|
||||
'actor', 'address', 'category', 'city', 'country', 'customer', 'film', 'language', 'payment', 'payment_p2007_01', 'payment_p2007_02', 'payment_p2007_03', 'payment_p2007_04', 'payment_p2007_05', 'payment_p2007_06', 'rental', 'staff'
|
||||
]
|
||||
'actor',
|
||||
'address',
|
||||
'category',
|
||||
'city',
|
||||
'country',
|
||||
'customer',
|
||||
'film',
|
||||
'language',
|
||||
'payment',
|
||||
'payment_p2007_01',
|
||||
'payment_p2007_02',
|
||||
'payment_p2007_03',
|
||||
'payment_p2007_04',
|
||||
'payment_p2007_05',
|
||||
'payment_p2007_06',
|
||||
'rental',
|
||||
'staff',
|
||||
];
|
||||
|
||||
const pgSakilaSqlViews = [
|
||||
'actor_info', 'customer_list', 'film_list', 'nicer_but_slower_film_list', 'sales_by_film_category', 'sales_by_store', 'staff_list'
|
||||
]
|
||||
'actor_info',
|
||||
'customer_list',
|
||||
'film_list',
|
||||
'nicer_but_slower_film_list',
|
||||
'sales_by_film_category',
|
||||
'sales_by_store',
|
||||
'staff_list',
|
||||
];
|
||||
|
||||
const sqliteSakilaSqlViews = [
|
||||
'customer_list', 'film_list', 'staff_list', 'sales_by_store', 'sales_by_film_category'
|
||||
]
|
||||
const sqliteSakilaSqlViews = ['customer_list', 'film_list', 'staff_list', 'sales_by_store', 'sales_by_film_category'];
|
||||
|
||||
export { mysqlSakilaTables, mysqlSakilaSqlViews, pgSakilaTables, pgSakilaSqlViews, sqliteSakilaSqlViews }
|
||||
export { mysqlSakilaTables, mysqlSakilaSqlViews, pgSakilaTables, pgSakilaSqlViews, sqliteSakilaSqlViews };
|
||||
|
||||
Reference in New Issue
Block a user