Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Schema difference reported merely from indentation #978

Closed
iffy opened this issue Mar 2, 2024 · 1 comment
Closed

Schema difference reported merely from indentation #978

iffy opened this issue Mar 2, 2024 · 1 comment
Labels
bug Things that prevent or seriously impede people from doing their budget. included in next release The work is done, it's just waiting to be released.

Comments

@iffy
Copy link
Contributor

iffy commented Mar 2, 2024

Schema difference incoming.account_transaction (table) sql = CREATE TABLE "account_transaction" (
    id TEXT PRIMARY KEY DEFAULT ( printf('%x', julianday('now')*86400000) || '-' || lower(hex(randomblob(10))) ),
    created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    posted TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    account_id TEXT,
    amount INTEGER,
    memo TEXT,
    fi_id TEXT,
    general_cat TEXT DEFAULT '', notes TEXT DEFAULT '', cleared TINYINT DEFAULT 0,
    FOREIGN KEY(account_id) REFERENCES account(id)
)
Schema difference main.account_transaction (table) sql = CREATE TABLE "account_transaction" (
      id TEXT PRIMARY KEY DEFAULT ( printf('%x', julianday('now')*86400000) || '-' || lower(hex(randomblob(10))) ),
      created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
      posted TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
      account_id TEXT,
      amount INTEGER,
      memo TEXT,
      fi_id TEXT,
      general_cat TEXT DEFAULT '', notes TEXT DEFAULT '', cleared TINYINT DEFAULT 0,
      FOREIGN KEY(account_id) REFERENCES account(id)
    )
@iffy iffy added bug Things that prevent or seriously impede people from doing their budget. included in next release The work is done, it's just waiting to be released. labels Mar 2, 2024
@iffy
Copy link
Contributor Author

iffy commented Mar 7, 2024

Included in v0.74.0 release (AUTOMATED COMMENT)

@iffy iffy closed this as completed Mar 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Things that prevent or seriously impede people from doing their budget. included in next release The work is done, it's just waiting to be released.
Projects
None yet
Development

No branches or pull requests

1 participant