GithubHelp home page GithubHelp logo

Comments (6)

marcobambini avatar marcobambini commented on June 12, 2024 1

Let me check what I can do, it seems an useful feature to have.

from sqlite-createtable-parser.

calvin2021y avatar calvin2021y commented on June 12, 2024

The downside is need find a workaround for ALTER TABLE ADD COLUMN:

ALTER TABLE `User` ADD COLUMN test INTEGER;
select sql from sqlite_master where name = 'User';

If there is a way to add comment when ALTER table, it will be great for migrate manage.

from sqlite-createtable-parser.

calvin2021y avatar calvin2021y commented on June 12, 2024

ADD COLUMN COMMENT will work like this:

ALTER TABLE `User` ADD COLUMN test -- test 123
INTEGER;

from sqlite-createtable-parser.

marcobambini avatar marcobambini commented on June 12, 2024

The ALTER TABLE command is not supported. This repo supports CREATE TABLE statements only.

from sqlite-createtable-parser.

calvin2021y avatar calvin2021y commented on June 12, 2024

After call ALTER TABLE, the sqlite_master.sql will updated like you run a new CREATE TABLE sql for current schema, so no need change for sqlite-createtable-parser.

CREATE TABLE User
        -- A table comment
(
        uid INTEGER,    -- A field comment
        flags INTEGER   -- Another field comment
);
ALTER TABLE `User` ADD COLUMN test -- test 123
INTEGER;

select sql from sqlite_master where name = 'User'; will look like this:

CREATE TABLE User
        -- A table comment
(
        uid INTEGER,    -- A field comment
        flags INTEGER   -- Another field comment
, test -- test 123
INTEGER)

from sqlite-createtable-parser.

marcobambini avatar marcobambini commented on June 12, 2024

Fixed by 9c0d6ad.

@calvin2021y please let me know if it works for you.
Only the latest one is reported in case of multiple comments (which refer to a table or a column).

from sqlite-createtable-parser.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.