Tên tài khoản:
Mật khẩu:
Đăng Nhập
create_table_with_column(table_name, columns)
columns: column_name => column_type - column_name: tên trường - column_type: kiểu dữ liệu (TEXT, INTEGER, NUMERIC, BLOB, REAL,...)
{% set structure_chatbox = {"name":"TEXT","messeage":"TEXT","time":"INTEGER"} %} {{create_table_with_column('chatbox', structure_chatbox)}}
create_table(table_name)