Files
supabase/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/index.ts
Joshen Lim 0ee75935f7 Support for composite foreign keys in table editor (#21078)
* Init foreign keys manage

* Midway

* Midway

* Implement functionality for new foreign key management flow in table editor

* Deprecate old add and remove foreign key queries

* Lint

* Set editor dirty when managing foreign keys

* Add basic validation in new ForeignKeySelector

* Remove FK management in column editor, deprecate old foreign key selector components

* Add validation on columnm types for foreign keys

* Set column type to foreign key type if new column

* Show appropriate notices for when referenced column doesnt match source column type

* fix

* Remove comment

* Lint

* ColumnEditor swap position of data type and Fk
2024-02-13 10:42:06 +08:00

9 lines
370 B
TypeScript

import SidePanelEditor from './SidePanelEditor'
import RowEditor from './RowEditor/RowEditor'
import ColumnEditor from './ColumnEditor/ColumnEditor'
import TableEditor from './TableEditor/TableEditor'
import SpreadsheetImport from './SpreadsheetImport/SpreadsheetImport'
export { RowEditor, ColumnEditor, TableEditor, SpreadsheetImport }
export default SidePanelEditor