Sha256: 4011430e36715d09333481ab450417d884abab79d719634f99e0b51db9d81719
Contents?: true
Size: 319 Bytes
Versions: 21
Compression:
Stored size: 319 Bytes
Contents
class CreateOrganizations < ActiveRecord::Migration def change create_table :organizations do |t| t.string :name t.string :slug t.timestamps end add_index :organizations, :slug add_column :projects, :organization_id, :integer add_index :projects, :organization_id end end
Version data entries
21 entries across 21 versions & 1 rubygems