Files
codeocean/db/migrate/20160609185708_create_file_templates.rb
2021-05-14 22:03:06 +02:00

13 lines
251 B
Ruby

# frozen_string_literal: true
class CreateFileTemplates < ActiveRecord::Migration[4.2]
def change
create_table :file_templates do |t|
t.string :name
t.text :content
t.belongs_to :file_type
t.timestamps
end
end
end