Sha256: da6d95051b0483ac91d0bde590e12a97cd2303730c8bb0743adc669c475b20e4
Contents?: true
Size: 311 Bytes
Versions: 14
Compression:
Stored size: 311 Bytes
Contents
class CreateForms < ActiveRecord::Migration def self.up create_table :forms do |t| t.string :title t.string :action t.string :redirect_to t.text :body t.text :output t.text :config end end def self.down drop_table :forms end end
Version data entries
14 entries across 14 versions & 1 rubygems