mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 00:04:23 +08:00
* 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
9 lines
370 B
TypeScript
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
|