Home / File/ data.sql — flask Source File

data.sql — flask Source File

Architecture documentation for data.sql, a sql file in the flask codebase.

Entity Profile

Source Code

INSERT INTO user (username, password)
VALUES
  ('test', 'pbkdf2:sha256:50000$TCI4GzcX$0de171a4f4dac32e3364c7ddc7c14f3e2fa61f2d17574483f7ffbb431b4acb2f'),
  ('other', 'pbkdf2:sha256:50000$kJPKsz6N$d2d4784f1b030a9761f5ccaeeaca413f27f2ecb76d6168407af962ddce849f79');

INSERT INTO post (title, body, author_id, created)
VALUES
  ('test title', 'test' || x'0a' || 'body', 1, '2018-01-01 00:00:00');

Frequently Asked Questions

What does data.sql do?
data.sql is a source file in the flask codebase, written in sql.
Where is data.sql in the architecture?
data.sql is located at examples/tutorial/tests/data.sql (directory: examples/tutorial/tests).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free