SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
56
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <?php
- use yii\db\Migration;
- /**
- * Class m180129_151606_deferred_postbacks
- */
- class m180129_151606_deferred_postbacks extends Migration
- {
- const TABLE_NAME = '{{%deferred_postbacks}}';
- public function safeUp()
- {
- $this->createTable(self::TABLE_NAME, [
- 'id' => $this->primaryKey(),
- 'factory_data' => $this->text()->notNull(),
- 'response' => $this->text(),
- 'copleted_time' => $this->timestamp(),
- 'created_at' => $this->timestamp()->notNull(),
- ]);
- }
- public function safeDown()
- {
- $this->dropTable(self::TABLE_NAME);
- }
- }
RAW Paste Data

