musifrat_app/db/migrate/20160418191643_create_tiny_urls.rb
Nicolas Bally a1aef72f7f intial
2019-02-03 15:12:58 +01:00

16 lines
307 B
Ruby

# -*- encoding : utf-8 -*-
class CreateTinyUrls < ActiveRecord::Migration
def change
create_table :tiny_urls do |t|
t.string :url
t.string :slug
t.text :description
t.datetime :start_at
t.datetime :stop_at
t.integer :nbr_views
t.timestamps
end
end
end