This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Create a table in your CartoDB editor called 'version_control' | |
-- Run the following SQL in your editor to create the needed columns | |
-- | |
ALTER TABLE version_control ADD COLUMN data json; | |
ALTER TABLE version_control ADD COLUMN source_id integer; | |
ALTER TABLE version_control ADD COLUMN table_name text; | |
ALTER TABLE version_control ADD COLUMN tg_op text; |