Well, the easiest answer would be to use raw queries to create such tables. But that is not the Magento style. We will use the Magento style to build our table.
So, I suppose that you already created your install / upgrade script in your module. Now you have something like:
$this->startSetup(); //... $this->endSetup();
In many cases you will meet with $installer = $this; and with $installer->startSetup(), both are the same thing (it was created like this a long time ago, when such a notation influenced the autocomplete of the IDEs). The create table statement will be between the startSetup and the endSetup like:
$table = $this->getConnection()->newTable("your_table_definition") ->addColumn("column_name", Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array( "default" => "SOMETHING_DEFAULT" ), "some comment here") ->addColumn(...) ... ; $this->getConnection()->createTable($table);
The question is what to put instead of SOMETHING_DEFAULT? Use Varien_Db_Ddl_Table::TIMESTAMP_INIT, so your addColumn definition will look like:
->addColumn("column_name", Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array( "default" => Varien_Db_Ddl_Table::TIMESTAMP_INIT ), "some comment here")
That’s it.