usman 0.1.5dev → 0.1.5dev1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c65c43b24f186560b1f39335dbea222f3ea9b22a
4
- data.tar.gz: f527e47ba03c22de8fe1bdb6bc3b569c77f3b6f2
3
+ metadata.gz: f8f5c0beae4bc6746f67099a593121e5d3732d81
4
+ data.tar.gz: 2ff3dbdec4187dc4ecca3850bd61cb016c7bfe38
5
5
  SHA512:
6
- metadata.gz: 4fb1ef097e0a139368176c48695857aae00e8fe8087e3d2b47793cc34848485306d9d41fed93a927d1ff14e937b086a32885b6b13c64c01c394e4401a12899cd
7
- data.tar.gz: 65cbc70c65a69ac79a26c76c172a53bcb6004a0399d01a4990487c366d7db5369dd64ac4f53b88ef0b95694793bfd2fd22235d63cde824fefeee048924aa1b5c
6
+ metadata.gz: ba738d36587367239708118d8f3ee5a795be920707c9a6eff7620edd138cfa5aef31a76c09109912045a026ff568222ea5bfb977049fe4059f8cd262a37d187b
7
+ data.tar.gz: b490040c90f170f7eb225c138c91ebc14bfec7a6e2346d42844a39a412dd7031eed9bb2f3183b426e7aead194f92a222c56975ce2cd7ea2d30960a482b3cb2b4
@@ -3,7 +3,7 @@ class CreateUsers < ActiveRecord::Migration[5.0]
3
3
  create_table(:users) do |t|
4
4
 
5
5
  ## First Name, Last Name and Username
6
- t.string :name, limit: 256
6
+ t.string :name
7
7
  t.string :username, :null => false, :limit=>32
8
8
  t.string :email, :null => false
9
9
  t.string :phone, :null => true, :limit=>24
@@ -2,7 +2,7 @@ class CreateFeatures < ActiveRecord::Migration[5.0]
2
2
 
3
3
  def change
4
4
  create_table(:features) do |t|
5
- t.string :name, limit: 256
5
+ t.string :name
6
6
  t.string :status, :null => false, :default=>"unpublished", :limit=>16
7
7
  t.timestamps
8
8
  end
@@ -2,7 +2,7 @@ class CreateRoles < ActiveRecord::Migration[5.0]
2
2
 
3
3
  def change
4
4
  create_table(:roles) do |t|
5
- t.string :name, limit: 256
5
+ t.string :name
6
6
  t.timestamps
7
7
  end
8
8
 
data/lib/usman/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Usman
2
- VERSION = '0.1.5dev'
2
+ VERSION = '0.1.5dev1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: usman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5dev
4
+ version: 0.1.5dev1
5
5
  platform: ruby
6
6
  authors:
7
7
  - kpvarma