Phinx使用總結

2022-07-19 05:09:08 字數 1508 閱讀 4543

php vendor/bin/phinx init . 初始化

php vendor/bin/phinx create tablename 第乙個字元必須大寫

$tablename = 'hangyeyinzi';

if ($this->hastable($tablename))

$this->table($tablename)

->addcolumn('date', 'integer', ['limit' => 10, 'comment' => '日期**格式20170624'])

->addcolumn('yingshoulv', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '營業收入增長率(取3年均值)'])

->addcolumn('jinglilv', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '淨利潤增長率(取3年均值)'])

->addcolumn('jingzilv', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '淨資產收益率'])

->addcolumn('shouyibi', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '每股收益**比(1/pe)'])

->addcolumn('jingyingxianjinbi', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '每股經營性現金流**比(每股現金流/現價)'])

->addcolumn('guxilv', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '股息率'])

->addcolumn('jingzibi', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '每股淨資產**比(1/pb)'])

->addcolumn('hs300_ratio', 'decimal', ['precision' => 30, 'scale' => 15, 'comment' => '滬深300行業權重佔比aindexhs300closeweight'])

->addcolumn('hid', 'integer', ['limit' => 10, 'comment' => '行業**'])

->create();

php vendor/bin/phinx status -e tag 檢視指定環境的資料庫狀態

php vendor/bin/phinx migrate -e tag 根據指令碼生產表結構到資料庫裡面

php vendor/bin/phinx breakpoint -e tag 打斷點

php vendor/bin/phinx rollback  -e tag -t 20170623083322 回退指定點腳步

phinx資料庫指令碼遷移環境配置

phinx資料庫指令碼遷移環境配置 環境 environments default migration table phinxlog default database development localhost adapter mysql host localhost name dev user r...

EJunGrid使用總結

1 1。0版沒有實現垂直方向上的對齊,procedure tobgui reportdesign.griddrawcelltext acanvas tcanvas const arect trect const acoord tpoint agrid tzjgrid const text strin...

SDRAM使用總結

1,sdram的位址線,在我們一般用的什麼sram啊,psram啊,ram啊,一般而言都是有多少根位址線,然後可以算出定址空間,比如有11根位址線,那定址空間就是2的11次方減1。但是sdram是分列位址和行位址的,行 列位址線是復用的,所以有時候我們看到說定址空間有多大多大,但是看看位址線怎麼就那...