Overview
Comment: | La colonne bookmark a été supprimée |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
6934f3c4a58a7a49c50ca75fe03af232 |
User & Date: | bohwaz on 2020-04-23 01:11:23 |
Other Links: | branch diff | manifest | tags |
Context
2020-04-23
| ||
01:12 | Page de gestion des plans comptables et vue du plan comptable check-in: 2421f0583b user: bohwaz tags: dev | |
01:11 | La colonne bookmark a été supprimée check-in: 6934f3c4a5 user: bohwaz tags: dev | |
2020-04-22
| ||
02:17 | Version minimale de SQLite++ check-in: 2deff92b2c user: bohwaz tags: dev | |
Changes
Modified src/include/data/1.0.0_schema.sql from [1b8216bf6d] to [b1bfe5e1c8].
︙ | ︙ | |||
198 199 200 201 202 203 204 | code TEXT NOT NULL, -- peut contenir des lettres, eg. 53A, 53B, etc. parent INTEGER NULL REFERENCES acc_accounts(id), label TEXT NOT NULL, description TEXT NULL, position INTEGER NOT NULL, -- position actif/passif/charge/produit | | < | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | code TEXT NOT NULL, -- peut contenir des lettres, eg. 53A, 53B, etc. parent INTEGER NULL REFERENCES acc_accounts(id), label TEXT NOT NULL, description TEXT NULL, position INTEGER NOT NULL, -- position actif/passif/charge/produit type INTEGER NOT NULL DEFAULT 0, -- Type de compte spécial : banque, caisse, en attente d'encaissement, favori, etc. user INTEGER NOT NULL DEFAULT 1 -- 1 = fait partie du plan comptable original, 0 = a été ajouté par l'utilisateur ); CREATE UNIQUE INDEX IF NOT EXISTS acc_accounts_codes ON acc_accounts (code, id_plan); CREATE INDEX IF NOT EXISTS acc_accounts_parent ON acc_accounts (parent); CREATE TABLE IF NOT EXISTS acc_years |
︙ | ︙ |