Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bitcoin Telegram Bot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s2191814
Bitcoin Telegram Bot
Merge requests
!2
Draft: initial user flow for creating a wallet
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Draft: initial user flow for creating a wallet
2-implement_all_user_flows
into
main
Overview
0
Commits
15
Pipelines
0
Changes
8
Merged
Janssen, D.D. (Dylan, Student M-CS)
requested to merge
2-implement_all_user_flows
into
main
2 years ago
Overview
0
Commits
15
Pipelines
0
Changes
11
Expand
0
0
Merge request reports
Compare
version 1
version 10
21b050f4
2 years ago
version 9
f73478e6
2 years ago
version 8
bfd7caaf
2 years ago
version 7
3f8c69f2
2 years ago
version 6
36de0216
2 years ago
version 5
7c250728
2 years ago
version 4
3284b37e
2 years ago
version 3
57d53bce
2 years ago
version 2
23a9380b
2 years ago
version 1
e0427c56
2 years ago
main (base)
and
version 8
latest version
c078ae8e
15 commits,
2 years ago
version 10
21b050f4
14 commits,
2 years ago
version 9
f73478e6
13 commits,
2 years ago
version 8
bfd7caaf
12 commits,
2 years ago
version 7
3f8c69f2
11 commits,
2 years ago
version 6
36de0216
10 commits,
2 years ago
version 5
7c250728
9 commits,
2 years ago
version 4
3284b37e
8 commits,
2 years ago
version 3
57d53bce
7 commits,
2 years ago
version 2
23a9380b
6 commits,
2 years ago
version 1
e0427c56
1 commit,
2 years ago
Show latest version
11 files
+
545
−
113
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
db/mysql.sql
+
27
−
9
Options
create
table
app_state
(
id
int
auto_increment
,
message
varchar
(
200
)
null
,
message
varchar
(
200
)
not
null
,
menu
varchar
(
200
)
null
,
variable_name
varchar
(
100
)
not
null
,
prev_state
int
default
0
not
null
,
constraint
app_state_pk
primary
key
(
id
)
);
@@ -11,36 +11,54 @@ create table app_state
create
unique
index
app_state_id_uindex
on
app_state
(
id
);
create
table
app_user
(
id
int
auto_increment
,
telegram_id
int
not
null
,
state_id
int
default
0
not
null
,
nickname
varchar
(
100
)
null
,
variables
varchar
(
200
)
null
,
variables
text
null
,
constraint
app_user_pk
primary
key
(
id
)
constraint
app_state
_app_wallet
_id_fk
primary
key
(
id
)
,
constraint
app_
user_
state_id_fk
foreign
key
(
state_id
)
references
app_state
(
id
)
);
create
unique
index
app_user_id_uindex
on
app_user
(
id
);
create
unique
index
app_user_telegram_id_uindex
on
app_user
(
telegram_id
);
create
table
app_wallet
(
id
int
auto_increment
,
max_co_signers
int
not
null
,
min_co_signers
int
null
,
min_co_signers
int
not
null
,
name
varchar
(
100
)
null
,
initiator_id
int
not
null
,
constraint
app_wallet_pk
primary
key
(
id
),
constraint
app_wallet_
app_
user_id_fk
constraint
app_wallet_user_id_fk
foreign
key
(
initiator_id
)
references
app_user
(
id
)
);
create
unique
index
app_wallet_id_uindex
on
app_wallet
(
id
);
create
table
app_wallet_request
(
id
int
auto_increment
,
token
varchar
(
64
)
not
null
,
wallet_id
int
not
null
,
constraint
app_wallet_request_pk
primary
key
(
id
),
constraint
app_wallet_request_wallet_id_fk
foreign
key
(
wallet_id
)
references
app_wallet
(
id
)
);
create
unique
index
app_wallet_request_id_uindex
on
app_wallet_request
(
id
);
create
unique
index
app_wallet_request_token_uindex
on
app_wallet_request
(
token
);
Loading