From 9d315613aeb03005fb3251538a071b0940491a38 Mon Sep 17 00:00:00 2001 From: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:56:54 +0800 Subject: [PATCH] Issuance length (#460) * increase length * change to mediumtext * init --- .github/workflows/test.yml | 32 +++++++++++++++++++++++++++ docs/federation/sql_dump/federation_shema.sql | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..c7ec7f64 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,32 @@ +name: Go Test +on: + push: + branches: + - master + - dev + pull_request: + branches: + - master + - dev + +jobs: + build: + name: Test + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.13 + uses: actions/setup-go@v1 + with: + go-version: 1.13 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v1 + + - name: Get dependencies + run: go get -v -t -d ./... + + - name: Run Tests + run: make test + diff --git a/docs/federation/sql_dump/federation_shema.sql b/docs/federation/sql_dump/federation_shema.sql index 946f10c9..36e00611 100644 --- a/docs/federation/sql_dump/federation_shema.sql +++ b/docs/federation/sql_dump/federation_shema.sql @@ -93,7 +93,7 @@ UNLOCK TABLES; CREATE TABLE `assets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `asset_id` varchar(64) NOT NULL, - `issuance_program` varchar(128) NOT NULL, + `issuance_program` mediumtext NOT NULL, `vm_version` int(11) NOT NULL DEFAULT '1', `definition` text, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- 2.11.0