Skip to content

create_new in dropdown -> INSERT into database #841

Answered by lovasoa
ArchaeoBasti asked this question in Q&A
Discussion options

You must be logged in to vote

Here is my suggestion (written for sqlite, but adaptable to other databases):

DROP TABLE IF EXISTS content;
DROP TABLE IF EXISTS cities;

CREATE TABLE cities (
    ID INTEGER PRIMARY KEY AUTOINCREMENT,
    city VARCHAR(255) NOT NULL
);
CREATE TABLE content (
    ID INTEGER PRIMARY KEY AUTOINCREMENT,
    city_id INTEGER,
    FOREIGN KEY (city_id) REFERENCES cities(ID)
);

insert into cities(city) values ('paris'), ('london');

-- Form to create content, including the ability to add a new city
SELECT 'form' AS component;
SELECT 'city' AS name, 'City' AS label, 'select' AS type, 
       (
           SELECT json_group_array(json_object('label', city, 'value', ID))
           FROM cities
     …

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@ArchaeoBasti
Comment options

@ArchaeoBasti
Comment options

@lovasoa
Comment options

Answer selected by ArchaeoBasti
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants