Sha256: 4e64e73ea12f7d210ca71aa86710313efba5f73ceb12d22bd390368d168083bf
Contents?: true
Size: 376 Bytes
Versions: 34
Compression:
Stored size: 376 Bytes
Contents
# Sample plugin migration # Use rake db:migrate_plugins to migrate installed plugins class CreateMeetings < ActiveRecord::Migration def self.up create_table :meetings do |t| t.column :project_id, :integer, :null => false t.column :description, :string t.column :scheduled_on, :datetime end end def self.down drop_table :meetings end end
Version data entries
34 entries across 34 versions & 1 rubygems