Sha256: ecd0123f8d1edf3f7582d71adae0cd26246ed9fc2370e2d4282d3b947819555b
Contents?: true
Size: 267 Bytes
Versions: 1
Compression:
Stored size: 267 Bytes
Contents
class CreateVenues < ActiveRecord::Migration def self.up create_table :venues do |t| t.string :title t.text :description t.string :address t.string :url t.timestamps end end def self.down drop_table :venues end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
calagator-1.1.0 | db/migrate/002_create_venues.rb |