flarum_notifications.xml 1.1 KB

12345678910111213141516
  1. <table name="flarum_notifications" desc="" packages="github.com/2637309949/dolphin/packages/null,github.com/2637309949/dolphin/packages/decimal">
  2. <column name="id" desc="" type="null.Int" xorm="int(10) pk notnull autoincr" />
  3. <column name="user_id" desc="" type="null.Int" xorm="int(10) notnull" />
  4. <column name="from_user_id" desc="" type="null.Int" xorm="int(10)" />
  5. <column name="type" desc="" type="null.String" xorm="varchar(100) notnull" />
  6. <column name="subject_id" desc="" type="null.Int" xorm="int(10)" />
  7. <column name="data" type="[]byte" xorm="blob" />
  8. <column name="read_at" desc="" type="null.Time" xorm="datetime" />
  9. <column name="create_by" desc="Creator" type="null.String" xorm="varchar(36)" />
  10. <column name="create_time" desc="Creation time" type="null.Time" xorm="datetime" />
  11. <column name="update_by" desc="Last updated by" type="null.String" xorm="varchar(36)" />
  12. <column name="update_time" desc="Last update time" type="null.Time" xorm="datetime" />
  13. <column name="del_flag" desc="Delete tag" type="null.Int" xorm="notnull" />
  14. <column name="remark" desc="Remark" type="null.String" xorm="varchar(200)" />
  15. </table>