mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
11 lines
490 B
SQL
11 lines
490 B
SQL
CREATE TABLE `transactions` (
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
`state_group_id` int(10) unsigned DEFAULT NULL,
|
|
`transaction_type_id` int(10) unsigned NOT NULL,
|
|
`tx_hash` binary(48) DEFAULT NULL,
|
|
`memo` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`received` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`blockchain_type_id` bigint(20) unsigned NOT NULL DEFAULT 1,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|