class CreateInitTemplates < ActiveRecord::Migration[6.0]
  def change
    create_table :init_templates do |t|
    	t.integer :organisation_id
    	t.integer :user_id
      t.string :name
      t.string :template_type
      t.text :details
      t.string :ap_mac_id

      t.timestamps
    end
  end
end
