12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Navicat Premium Data Transfer
- Source Server : saiyi
- Source Server Type : SQLite
- Source Server Version : 3021000
- Source Schema : main
- Target Server Type : SQLite
- Target Server Version : 3021000
- File Encoding : 65001
- Date: 20/08/2020 11:51:47
- */
- PRAGMA foreign_keys = false;
- DROP TABLE IF EXISTS "commission";
- CREATE TABLE "commission" (
- "id" integer NOT NULL COLLATE BINARY PRIMARY KEY AUTOINCREMENT,
- "month" text,
- "company" text,
- "contract_no" text,
- "goods_category" text,
- "goods_type" text,
- "amount" real,
- "price" real,
- "contract_value" real,
- "receive_money" real,
- "period_balance" real,
- "agency" real,
- "base_price" real,
- "shipping" real,
- "project" real,
- "type" integer,
- "seller" text
- );
- PRAGMA foreign_keys = true;
|